Class: Google::Apis::IdentitytoolkitV3::VerifyCustomTokenRequest
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV3::VerifyCustomTokenRequest
- 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 a custom token
Instance Attribute Summary collapse
-
#delegated_project_number ⇒ Fixnum
GCP project number of the requesting delegated app.
-
#instance_id ⇒ String
Instance id token of the app.
-
#return_secure_token ⇒ Boolean
(also: #return_secure_token?)
Whether return sts id token and refresh token instead of gitkit token.
-
#token ⇒ String
The custom token to verify Corresponds to the JSON property
token
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VerifyCustomTokenRequest
constructor
A new instance of VerifyCustomTokenRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ VerifyCustomTokenRequest
Returns a new instance of VerifyCustomTokenRequest
1421 1422 1423 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1421 def initialize(**args) update!(**args) end |
Instance Attribute Details
#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
1403 1404 1405 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1403 def delegated_project_number @delegated_project_number end |
#instance_id ⇒ String
Instance id token of the app.
Corresponds to the JSON property instanceId
1408 1409 1410 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1408 def instance_id @instance_id 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
1413 1414 1415 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1413 def return_secure_token @return_secure_token end |
#token ⇒ String
The custom token to verify
Corresponds to the JSON property token
1419 1420 1421 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1419 def token @token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1426 1427 1428 1429 1430 1431 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1426 def update!(**args) @delegated_project_number = args[:delegated_project_number] if args.key?(:delegated_project_number) @instance_id = args[:instance_id] if args.key?(:instance_id) @return_secure_token = args[:return_secure_token] if args.key?(:return_secure_token) @token = args[:token] if args.key?(:token) end |