class Google::Apis::IdentitytoolkitV3::VerifyPasswordRequest
Request to verify the password.
Attributes
The captcha challenge. Corresponds to the JSON property `captchaChallenge` @return [String]
Response to the captcha. Corresponds to the JSON property `captchaResponse` @return [String]
GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property `delegatedProjectNumber` @return [String]
The email of the user. Corresponds to the JSON property `email` @return [String]
The GITKit token of the authenticated user. Corresponds to the JSON property `idToken` @return [String]
Instance id token of the app. Corresponds to the JSON property `instanceId` @return [String]
The password inputed by the user. Corresponds to the JSON property `password` @return [String]
The GITKit token for the non-trusted IDP, which is to be confirmed by the user. Corresponds to the JSON property `pendingIdToken` @return [String]
Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]
Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]
Public Class Methods
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 1126 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 1131 def update!(**args) @captcha_challenge = args[:captcha_challenge] if args.key?(:captcha_challenge) @captcha_response = args[:captcha_response] if args.key?(:captcha_response) @delegated_project_number = args[:delegated_project_number] if args.key?(:delegated_project_number) @email = args[:email] if args.key?(:email) @id_token = args[:id_token] if args.key?(:id_token) @instance_id = args[:instance_id] if args.key?(:instance_id) @password = args[:password] if args.key?(:password) @pending_id_token = args[:pending_id_token] if args.key?(:pending_id_token) @return_secure_token = args[:return_secure_token] if args.key?(:return_secure_token) end