Class: Google::Apis::IdentitytoolkitV3::ResetPasswordRequest

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ResetPasswordRequest

Returns a new instance of ResetPasswordRequest.



717
718
719
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 717

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#emailString

The email address of the user. Corresponds to the JSON property email

Returns:

  • (String)


700
701
702
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 700

def email
  @email
end

#new_passwordString

The new password inputted by the user. Corresponds to the JSON property newPassword

Returns:

  • (String)


705
706
707
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 705

def new_password
  @new_password
end

#old_passwordString

The old password inputted by the user. Corresponds to the JSON property oldPassword

Returns:

  • (String)


710
711
712
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 710

def old_password
  @old_password
end

#oob_codeString

The confirmation code. Corresponds to the JSON property oobCode

Returns:

  • (String)


715
716
717
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 715

def oob_code
  @oob_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



722
723
724
725
726
727
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 722

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