Class: Google::Apis::IdentitytoolkitV3::VerifyPasswordRequest
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV3::VerifyPasswordRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/identitytoolkit_v3/classes.rb,
generated/google/apis/identitytoolkit_v3/representations.rb,
generated/google/apis/identitytoolkit_v3/representations.rb
Overview
Request to verify the password.
Instance Attribute Summary collapse
-
#captcha_challenge ⇒ String
The captcha challenge.
-
#captcha_response ⇒ String
Response to the captcha.
-
#delegated_project_number ⇒ Fixnum
GCP project number of the requesting delegated app.
-
#email ⇒ String
The email of the user.
-
#id_token ⇒ String
The GITKit token of the authenticated user.
-
#instance_id ⇒ String
Instance id token of the app.
-
#password ⇒ String
The password inputed by the user.
-
#pending_id_token ⇒ String
The GITKit token for the non-trusted IDP, which is to be confirmed by the user.
-
#return_secure_token ⇒ Boolean
(also: #return_secure_token?)
Whether return sts id token and refresh token instead of gitkit token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VerifyPasswordRequest
constructor
A new instance of VerifyPasswordRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VerifyPasswordRequest
Returns a new instance of VerifyPasswordRequest
1246 1247 1248 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1246 def initialize(**args) update!(**args) end |
Instance Attribute Details
#captcha_challenge ⇒ String
The captcha challenge.
Corresponds to the JSON property captchaChallenge
1202 1203 1204 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1202 def captcha_challenge @captcha_challenge end |
#captcha_response ⇒ String
Response to the captcha.
Corresponds to the JSON property captchaResponse
1207 1208 1209 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1207 def captcha_response @captcha_response end |
#delegated_project_number ⇒ Fixnum
GCP project number of the requesting delegated app. Currently only intended
for Firebase V1 migration.
Corresponds to the JSON property delegatedProjectNumber
1213 1214 1215 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1213 def delegated_project_number @delegated_project_number end |
#email ⇒ String
The email of the user.
Corresponds to the JSON property email
1218 1219 1220 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1218 def email @email end |
#id_token ⇒ String
The GITKit token of the authenticated user.
Corresponds to the JSON property idToken
1223 1224 1225 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1223 def id_token @id_token end |
#instance_id ⇒ String
Instance id token of the app.
Corresponds to the JSON property instanceId
1228 1229 1230 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1228 def instance_id @instance_id end |
#password ⇒ String
The password inputed by the user.
Corresponds to the JSON property password
1233 1234 1235 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1233 def password @password end |
#pending_id_token ⇒ String
The GITKit token for the non-trusted IDP, which is to be confirmed by the user.
Corresponds to the JSON property pendingIdToken
1238 1239 1240 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1238 def pending_id_token @pending_id_token end |
#return_secure_token ⇒ Boolean Also known as: return_secure_token?
Whether return sts id token and refresh token instead of gitkit token.
Corresponds to the JSON property returnSecureToken
1243 1244 1245 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1243 def return_secure_token @return_secure_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1251 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 |