Class: Google::Apis::IdentitytoolkitV3::ResetPasswordResponse

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

Response of resetting 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) ⇒ ResetPasswordResponse

Returns a new instance of ResetPasswordResponse



1445
1446
1447
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1445

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

Instance Attribute Details

#emailString

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

Returns:

  • (String)


1428
1429
1430
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1428

def email
  @email
end

#kindString

The fixed string "identitytoolkit#ResetPasswordResponse". Corresponds to the JSON property kind

Returns:

  • (String)


1433
1434
1435
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1433

def kind
  @kind
end

#new_emailString

If the out-of-band code is for email recovery, the user's new email. Corresponds to the JSON property newEmail

Returns:

  • (String)


1438
1439
1440
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1438

def new_email
  @new_email
end

#request_typeString

The request type. Corresponds to the JSON property requestType

Returns:

  • (String)


1443
1444
1445
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1443

def request_type
  @request_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1450
1451
1452
1453
1454
1455
# File 'generated/google/apis/identitytoolkit_v3/classes.rb', line 1450

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