Class: Google::Apis::IdentitytoolkitV3::VerifyPasswordResponse

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

Request of verifying the password.

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) ⇒ VerifyPasswordResponse

Returns a new instance of VerifyPasswordResponse



2252
2253
2254
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2252

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

Instance Attribute Details

#display_nameString

The name of the user. Corresponds to the JSON property displayName

Returns:

  • (String)


2191
2192
2193
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2191

def display_name
  @display_name
end

#emailString

The email returned by the IdP. NOTE: The federated login user may not own the email. Corresponds to the JSON property email

Returns:

  • (String)


2197
2198
2199
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2197

def email
  @email
end

#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)


2203
2204
2205
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2203

def expires_in
  @expires_in
end

#id_tokenString

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

Returns:

  • (String)


2208
2209
2210
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2208

def id_token
  @id_token
end

#kindString

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

Returns:

  • (String)


2213
2214
2215
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2213

def kind
  @kind
end

#local_idString

The RP local ID if it's already been mapped to the IdP account identified by the federated ID. Corresponds to the JSON property localId

Returns:

  • (String)


2219
2220
2221
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2219

def local_id
  @local_id
end

#oauth_access_tokenString

The OAuth2 access token. Corresponds to the JSON property oauthAccessToken

Returns:

  • (String)


2224
2225
2226
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2224

def oauth_access_token
  @oauth_access_token
end

#oauth_authorization_codeString

The OAuth2 authorization code. Corresponds to the JSON property oauthAuthorizationCode

Returns:

  • (String)


2229
2230
2231
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2229

def oauth_authorization_code
  @oauth_authorization_code
end

#oauth_expire_inFixnum

The lifetime in seconds of the OAuth2 access token. Corresponds to the JSON property oauthExpireIn

Returns:

  • (Fixnum)


2234
2235
2236
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2234

def oauth_expire_in
  @oauth_expire_in
end

#photo_urlString

The URI of the user's photo at IdP Corresponds to the JSON property photoUrl

Returns:

  • (String)


2239
2240
2241
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2239

def photo_url
  @photo_url
end

#refresh_tokenString

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

Returns:

  • (String)


2244
2245
2246
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2244

def refresh_token
  @refresh_token
end

#registeredBoolean Also known as: registered?

Whether the email is registered. Corresponds to the JSON property registered

Returns:

  • (Boolean)


2249
2250
2251
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2249

def registered
  @registered
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 2257

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @email = args[:email] if args.key?(:email)
  @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)
  @local_id = args[:local_id] if args.key?(:local_id)
  @oauth_access_token = args[:oauth_access_token] if args.key?(:oauth_access_token)
  @oauth_authorization_code = args[:oauth_authorization_code] if args.key?(:oauth_authorization_code)
  @oauth_expire_in = args[:oauth_expire_in] if args.key?(:oauth_expire_in)
  @photo_url = args[:photo_url] if args.key?(:photo_url)
  @refresh_token = args[:refresh_token] if args.key?(:refresh_token)
  @registered = args[:registered] if args.key?(:registered)
end