class Google::Apis::IdentitytoolkitV3::VerifyCustomTokenRequest
Request to verify a custom token
Attributes
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 generated/google/apis/identitytoolkit_v3/classes.rb, line 1063 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/identitytoolkit_v3/classes.rb, line 1068 def update!(**args) @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