Class: Google::Apis::IdentitytoolkitV3::SetAccountInfoResponse
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV3::SetAccountInfoResponse
- 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
Respone of setting the account information.
Defined Under Namespace
Classes: ProviderUserInfo
Instance Attribute Summary collapse
-
#display_name ⇒ String
The name of the user.
-
#email ⇒ String
The email of the user.
-
#email_verified ⇒ Boolean
(also: #email_verified?)
If email has been verified.
-
#expires_in ⇒ Fixnum
If idToken is STS id token, then this field will be expiration time of STS id token in seconds.
-
#id_token ⇒ String
The Gitkit id token to login the newly sign up user.
-
#kind ⇒ String
The fixed string "identitytoolkit#SetAccountInfoResponse".
-
#local_id ⇒ String
The local ID of the user.
-
#new_email ⇒ String
The new email the user attempts to change to.
-
#password_hash ⇒ String
The user's hashed password.
-
#photo_url ⇒ String
The photo url of the user.
-
#provider_user_info ⇒ Array<Google::Apis::IdentitytoolkitV3::SetAccountInfoResponse::ProviderUserInfo>
The user's profiles at the associated IdPs.
-
#refresh_token ⇒ String
If idToken is STS id token, then this field will be refresh token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SetAccountInfoResponse
constructor
A new instance of SetAccountInfoResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SetAccountInfoResponse
Returns a new instance of SetAccountInfoResponse
1527 1528 1529 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1527 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The name of the user.
Corresponds to the JSON property displayName
1467 1468 1469 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1467 def display_name @display_name end |
#email ⇒ String
The email of the user.
Corresponds to the JSON property email
1472 1473 1474 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1472 def email @email end |
#email_verified ⇒ Boolean Also known as: email_verified?
If email has been verified.
Corresponds to the JSON property emailVerified
1477 1478 1479 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1477 def email_verified @email_verified end |
#expires_in ⇒ Fixnum
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
1484 1485 1486 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1484 def expires_in @expires_in end |
#id_token ⇒ String
The Gitkit id token to login the newly sign up user.
Corresponds to the JSON property idToken
1489 1490 1491 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1489 def id_token @id_token end |
#kind ⇒ String
The fixed string "identitytoolkit#SetAccountInfoResponse".
Corresponds to the JSON property kind
1494 1495 1496 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1494 def kind @kind end |
#local_id ⇒ String
The local ID of the user.
Corresponds to the JSON property localId
1499 1500 1501 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1499 def local_id @local_id end |
#new_email ⇒ String
The new email the user attempts to change to.
Corresponds to the JSON property newEmail
1504 1505 1506 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1504 def new_email @new_email end |
#password_hash ⇒ String
The user's hashed password.
Corresponds to the JSON property passwordHash
NOTE: Values are automatically base64 encoded/decoded in the client library.
1510 1511 1512 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1510 def password_hash @password_hash end |
#photo_url ⇒ String
The photo url of the user.
Corresponds to the JSON property photoUrl
1515 1516 1517 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1515 def photo_url @photo_url end |
#provider_user_info ⇒ Array<Google::Apis::IdentitytoolkitV3::SetAccountInfoResponse::ProviderUserInfo>
The user's profiles at the associated IdPs.
Corresponds to the JSON property providerUserInfo
1520 1521 1522 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1520 def provider_user_info @provider_user_info end |
#refresh_token ⇒ String
If idToken is STS id token, then this field will be refresh token.
Corresponds to the JSON property refreshToken
1525 1526 1527 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1525 def refresh_token @refresh_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1532 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) @email_verified = args[:email_verified] if args.key?(:email_verified) @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) @new_email = args[:new_email] if args.key?(:new_email) @password_hash = args[:password_hash] if args.key?(:password_hash) @photo_url = args[:photo_url] if args.key?(:photo_url) @provider_user_info = args[:provider_user_info] if args.key?(:provider_user_info) @refresh_token = args[:refresh_token] if args.key?(:refresh_token) end |