class Google::Apis::IdentitytoolkitV3::GetRecaptchaParamResponse

Response of getting recaptcha param.

Attributes

kind[RW]

The fixed string “identitytoolkit#GetRecaptchaParamResponse”. Corresponds to the JSON property `kind` @return [String]

recaptcha_site_key[RW]

Site key registered at recaptcha. Corresponds to the JSON property `recaptchaSiteKey` @return [String]

recaptcha_stoken[RW]

The stoken field for the recaptcha widget, used to request captcha challenge. Corresponds to the JSON property `recaptchaStoken` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/identitytoolkit_v3/classes.rb, line 332
def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @recaptcha_site_key = args[:recaptcha_site_key] if args.key?(:recaptcha_site_key)
  @recaptcha_stoken = args[:recaptcha_stoken] if args.key?(:recaptcha_stoken)
end