class Google::Apis::ApikeysV2::V2ListKeysResponse

Response message for `ListKeys` method.

Attributes

keys[RW]

A list of API keys. Corresponds to the JSON property `keys` @return [Array<Google::Apis::ApikeysV2::V2Key>]

next_page_token[RW]

The pagination token for the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apikeys_v2/classes.rb, line 376
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/apikeys_v2/classes.rb, line 381
def update!(**args)
  @keys = args[:keys] if args.key?(:keys)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end