Class: Google::Apis::IdentitytoolkitV3::UserInfo
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV3::UserInfo
- 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
Template for an individual account info.
Defined Under Namespace
Classes: ProviderUserInfo
Instance Attribute Summary collapse
-
#created_at ⇒ String
User creation timestamp.
-
#custom_auth ⇒ Boolean
(also: #custom_auth?)
Whether the user is authenticated by the developer.
-
#disabled ⇒ Boolean
(also: #disabled?)
Whether the user is disabled.
-
#display_name ⇒ String
The name of the user.
-
#email ⇒ String
The email of the user.
-
#email_verified ⇒ Boolean
(also: #email_verified?)
Whether the email has been verified.
-
#last_login_at ⇒ String
last login timestamp.
-
#local_id ⇒ String
The local ID of the user.
-
#password_hash ⇒ String
The user's hashed password.
-
#password_updated_at ⇒ Float
The timestamp when the password was last updated.
-
#photo_url ⇒ String
The URL of the user profile photo.
-
#provider_user_info ⇒ Array<Google::Apis::IdentitytoolkitV3::UserInfo::ProviderUserInfo>
The IDP of the user.
-
#salt ⇒ String
The user's password salt.
-
#screen_name ⇒ String
User's screen name at Twitter or login name at Github.
-
#valid_since ⇒ String
Timestamp in seconds for valid login token.
-
#version ⇒ Fixnum
Version of the user's password.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UserInfo
constructor
A new instance of UserInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ UserInfo
Returns a new instance of UserInfo.
1669 1670 1671 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1669 def initialize(**args) update!(**args) end |
Instance Attribute Details
#created_at ⇒ String
User creation timestamp.
Corresponds to the JSON property createdAt
1589 1590 1591 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1589 def created_at @created_at end |
#custom_auth ⇒ Boolean Also known as: custom_auth?
Whether the user is authenticated by the developer.
Corresponds to the JSON property customAuth
1594 1595 1596 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1594 def custom_auth @custom_auth end |
#disabled ⇒ Boolean Also known as: disabled?
Whether the user is disabled.
Corresponds to the JSON property disabled
1600 1601 1602 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1600 def disabled @disabled end |
#display_name ⇒ String
The name of the user.
Corresponds to the JSON property displayName
1606 1607 1608 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1606 def display_name @display_name end |
#email ⇒ String
The email of the user.
Corresponds to the JSON property email
1611 1612 1613 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1611 def email @email end |
#email_verified ⇒ Boolean Also known as: email_verified?
Whether the email has been verified.
Corresponds to the JSON property emailVerified
1616 1617 1618 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1616 def email_verified @email_verified end |
#last_login_at ⇒ String
last login timestamp.
Corresponds to the JSON property lastLoginAt
1622 1623 1624 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1622 def last_login_at @last_login_at end |
#local_id ⇒ String
The local ID of the user.
Corresponds to the JSON property localId
1627 1628 1629 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1627 def local_id @local_id end |
#password_hash ⇒ String
The user's hashed password.
Corresponds to the JSON property passwordHash
1632 1633 1634 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1632 def password_hash @password_hash end |
#password_updated_at ⇒ Float
The timestamp when the password was last updated.
Corresponds to the JSON property passwordUpdatedAt
1637 1638 1639 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1637 def password_updated_at @password_updated_at end |
#photo_url ⇒ String
The URL of the user profile photo.
Corresponds to the JSON property photoUrl
1642 1643 1644 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1642 def photo_url @photo_url end |
#provider_user_info ⇒ Array<Google::Apis::IdentitytoolkitV3::UserInfo::ProviderUserInfo>
The IDP of the user.
Corresponds to the JSON property providerUserInfo
1647 1648 1649 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1647 def provider_user_info @provider_user_info end |
#salt ⇒ String
The user's password salt.
Corresponds to the JSON property salt
1652 1653 1654 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1652 def salt @salt end |
#screen_name ⇒ String
User's screen name at Twitter or login name at Github.
Corresponds to the JSON property screenName
1657 1658 1659 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1657 def screen_name @screen_name end |
#valid_since ⇒ String
Timestamp in seconds for valid login token.
Corresponds to the JSON property validSince
1662 1663 1664 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1662 def valid_since @valid_since end |
#version ⇒ Fixnum
Version of the user's password.
Corresponds to the JSON property version
1667 1668 1669 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1667 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1674 def update!(**args) @created_at = args[:created_at] if args.key?(:created_at) @custom_auth = args[:custom_auth] if args.key?(:custom_auth) @disabled = args[:disabled] if args.key?(:disabled) @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) @last_login_at = args[:last_login_at] if args.key?(:last_login_at) @local_id = args[:local_id] if args.key?(:local_id) @password_hash = args[:password_hash] if args.key?(:password_hash) @password_updated_at = args[:password_updated_at] if args.key?(:password_updated_at) @photo_url = args[:photo_url] if args.key?(:photo_url) @provider_user_info = args[:provider_user_info] if args.key?(:provider_user_info) @salt = args[:salt] if args.key?(:salt) @screen_name = args[:screen_name] if args.key?(:screen_name) @valid_since = args[:valid_since] if args.key?(:valid_since) @version = args[:version] if args.key?(:version) end |