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

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ResetPasswordRequest

Returns a new instance of ResetPasswordRequest



703
704
705
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 703

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

Instance Attribute Details

#emailString

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

Returns:

  • (String)


686
687
688
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 686

def email
  @email
end

#new_passwordString

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

Returns:

  • (String)


691
692
693
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 691

def new_password
  @new_password
end

#old_passwordString

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

Returns:

  • (String)


696
697
698
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 696

def old_password
  @old_password
end

#oob_codeString

The confirmation code. Corresponds to the JSON property oobCode

Returns:

  • (String)


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

def oob_code
  @oob_code
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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