class Google::Apis::PartnersV2::RecaptchaChallenge
reCaptcha challenge info.
Attributes
id[RW]
The ID of the reCaptcha challenge. Corresponds to the JSON property `id` @return [String]
response[RW]
The response to the reCaptcha challenge. Corresponds to the JSON property `response` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/partners_v2/classes.rb, line 898 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/partners_v2/classes.rb, line 903 def update!(**args) @id = args[:id] if args.key?(:id) @response = args[:response] if args.key?(:response) end