Class: Google::Apis::IdentitytoolkitV3::ResetPasswordRequest
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV3::ResetPasswordRequest
- 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 to reset the password.
Instance Attribute Summary collapse
-
#email ⇒ String
The email address of the user.
-
#new_password ⇒ String
The new password inputted by the user.
-
#old_password ⇒ String
The old password inputted by the user.
-
#oob_code ⇒ String
The confirmation code.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ResetPasswordRequest
constructor
A new instance of ResetPasswordRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ResetPasswordRequest
Returns a new instance of ResetPasswordRequest
604 605 606 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 604 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The email address of the user.
Corresponds to the JSON property email
587 588 589 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 587 def email @email end |
#new_password ⇒ String
The new password inputted by the user.
Corresponds to the JSON property newPassword
592 593 594 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 592 def new_password @new_password end |
#old_password ⇒ String
The old password inputted by the user.
Corresponds to the JSON property oldPassword
597 598 599 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 597 def old_password @old_password end |
#oob_code ⇒ String
The confirmation code.
Corresponds to the JSON property oobCode
602 603 604 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 602 def oob_code @oob_code end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
609 610 611 612 613 614 |
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 609 def update!(**args) @email = args[:email] if args.key?(:email) @new_password = args[:new_password] if args.key?(:new_password) @old_password = args[:old_password] if args.key?(:old_password) @oob_code = args[:oob_code] if args.key?(:oob_code) end |