class Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1ListKeysResponse

Response to request to list keys in a project.

Attributes

keys[RW]

Key details. Corresponds to the JSON property `keys` @return [Array<Google::Apis::RecaptchaenterpriseV1::GoogleCloudRecaptchaenterpriseV1Key>]

next_page_token[RW]

Token to retrieve the next page of results. It is set to empty if no keys remain in results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

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