Class: Google::Apis::IdentitytoolkitV3::VerifyCustomTokenResponse

Inherits:
Object
  • Object
show all
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

Response from verifying a custom token

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ VerifyCustomTokenResponse

Returns a new instance of VerifyCustomTokenResponse



2171
2172
2173
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2171

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#expires_inFixnum

If idToken is STS id token, then this field will be expiration time of STS id token in seconds. Corresponds to the JSON property expiresIn

Returns:

  • (Fixnum)


2154
2155
2156
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2154

def expires_in
  @expires_in
end

#id_tokenString

The GITKit token for authenticated user. Corresponds to the JSON property idToken

Returns:

  • (String)


2159
2160
2161
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2159

def id_token
  @id_token
end

#kindString

The fixed string "identitytoolkit#VerifyCustomTokenResponse". Corresponds to the JSON property kind

Returns:

  • (String)


2164
2165
2166
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2164

def kind
  @kind
end

#refresh_tokenString

If idToken is STS id token, then this field will be refresh token. Corresponds to the JSON property refreshToken

Returns:

  • (String)


2169
2170
2171
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2169

def refresh_token
  @refresh_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2176
2177
2178
2179
2180
2181
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2176

def update!(**args)
  @expires_in = args[:expires_in] if args.key?(:expires_in)
  @id_token = args[:id_token] if args.key?(:id_token)
  @kind = args[:kind] if args.key?(:kind)
  @refresh_token = args[:refresh_token] if args.key?(:refresh_token)
end