Class: Google::Apis::IdentitytoolkitV3::ResetPasswordResponse
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV3::ResetPasswordResponse
- 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 resetting the password.
Instance Attribute Summary collapse
-
#email ⇒ String
The user's email.
-
#kind ⇒ String
The fixed string "identitytoolkit#ResetPasswordResponse".
-
#new_email ⇒ String
If the out-of-band code is for email recovery, the user's new email.
-
#request_type ⇒ String
The request type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResetPasswordResponse
constructor
A new instance of ResetPasswordResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ResetPasswordResponse
Returns a new instance of ResetPasswordResponse
1829 1830 1831 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1829 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The user's email. If the out-of-band code is for email recovery, the user's
original email.
Corresponds to the JSON property email
1812 1813 1814 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1812 def email @email end |
#kind ⇒ String
The fixed string "identitytoolkit#ResetPasswordResponse".
Corresponds to the JSON property kind
1817 1818 1819 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1817 def kind @kind end |
#new_email ⇒ String
If the out-of-band code is for email recovery, the user's new email.
Corresponds to the JSON property newEmail
1822 1823 1824 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1822 def new_email @new_email end |
#request_type ⇒ String
The request type.
Corresponds to the JSON property requestType
1827 1828 1829 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1827 def request_type @request_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1834 1835 1836 1837 1838 1839 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1834 def update!(**args) @email = args[:email] if args.key?(:email) @kind = args[:kind] if args.key?(:kind) @new_email = args[:new_email] if args.key?(:new_email) @request_type = args[:request_type] if args.key?(:request_type) end |