class Google::Apis::IdentitytoolkitV3::IdentitytoolkitRelyingpartySendVerificationCodeRequest
Request for Identitytoolkit-SendVerificationCode
Attributes
ios_receipt[RW]
Receipt of successful app token validation with APNS. Corresponds to the JSON property `iosReceipt` @return [String]
ios_secret[RW]
Secret delivered to iOS app via APNS. Corresponds to the JSON property `iosSecret` @return [String]
phone_number[RW]
The phone number to send the verification code to in E.164 format. Corresponds to the JSON property `phoneNumber` @return [String]
recaptcha_token[RW]
Recaptcha solution. Corresponds to the JSON property `recaptchaToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 754 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 759 def update!(**args) @ios_receipt = args[:ios_receipt] if args.key?(:ios_receipt) @ios_secret = args[:ios_secret] if args.key?(:ios_secret) @phone_number = args[:phone_number] if args.key?(:phone_number) @recaptcha_token = args[:recaptcha_token] if args.key?(:recaptcha_token) end