class Google::Apis::IdentitytoolkitV3::ResetPasswordResponse

Response of resetting the password.

Attributes

email[RW]

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` @return [String]

kind[RW]

The fixed string “identitytoolkit#ResetPasswordResponse”. Corresponds to the JSON property `kind` @return [String]

new_email[RW]

If the out-of-band code is for email recovery, the user's new email. Corresponds to the JSON property `newEmail` @return [String]

request_type[RW]

The request type. Corresponds to the JSON property `requestType` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/identitytoolkit_v3/classes.rb, line 1829
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/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