class Google::Apis::IdentitytoolkitV3::VerifyCustomTokenRequest

Request to verify a custom token

Attributes

delegated_project_number[RW]

GCP project number of the requesting delegated app. Currently only intended for Firebase V1 migration. Corresponds to the JSON property `delegatedProjectNumber` @return [Fixnum]

instance_id[RW]

Instance id token of the app. Corresponds to the JSON property `instanceId` @return [String]

return_secure_token[RW]

Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]

return_secure_token?[RW]

Whether return sts id token and refresh token instead of gitkit token. Corresponds to the JSON property `returnSecureToken` @return [Boolean]

token[RW]

The custom token to verify Corresponds to the JSON property `token` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1421
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 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