Class: Google::Apis::IdentitytoolkitV3::SignupNewUserResponse
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV3::SignupNewUserResponse
- 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 of signing up new user, creating anonymous user or anonymous user reauth.
Instance Attribute Summary collapse
-
#display_name ⇒ String
The name of the user.
-
#email ⇒ String
The email of the user.
-
#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#SignupNewUserResponse".
-
#local_id ⇒ String
The RP local ID of the user.
-
#refresh_token ⇒ String
If idToken is STS id token, then this field will be refresh token.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SignupNewUserResponse
constructor
A new instance of SignupNewUserResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SignupNewUserResponse
Returns a new instance of SignupNewUserResponse
1627 1628 1629 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1627 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The name of the user.
Corresponds to the JSON property displayName
1594 1595 1596 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1594 def display_name @display_name end |
#email ⇒ String
The email of the user.
Corresponds to the JSON property email
1599 1600 1601 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1599 def email @email 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
1605 1606 1607 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1605 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
1610 1611 1612 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1610 def id_token @id_token end |
#kind ⇒ String
The fixed string "identitytoolkit#SignupNewUserResponse".
Corresponds to the JSON property kind
1615 1616 1617 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1615 def kind @kind end |
#local_id ⇒ String
The RP local ID of the user.
Corresponds to the JSON property localId
1620 1621 1622 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1620 def local_id @local_id end |
#refresh_token ⇒ String
If idToken is STS id token, then this field will be refresh token.
Corresponds to the JSON property refreshToken
1625 1626 1627 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1625 def refresh_token @refresh_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1632 1633 1634 1635 1636 1637 1638 1639 1640 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1632 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) @refresh_token = args[:refresh_token] if args.key?(:refresh_token) end |