Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1ResetPasswordResponse
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1ResetPasswordResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/identitytoolkit_v1/classes.rb,
lib/google/apis/identitytoolkit_v1/representations.rb,
lib/google/apis/identitytoolkit_v1/representations.rb
Overview
Response message for ResetPassword.
Instance Attribute Summary collapse
-
#email ⇒ String
The email associated with the out-of-band code that was used.
-
#kind ⇒ String
Corresponds to the JSON property
kind. -
#mfa_info ⇒ Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1MfaEnrollment
Information on which multi-factor authentication (MFA) providers are enabled for an account.
-
#new_email ⇒ String
Corresponds to the JSON property
newEmail. -
#request_type ⇒ String
Corresponds to the JSON property
requestType.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1ResetPasswordResponse
constructor
A new instance of GoogleCloudIdentitytoolkitV1ResetPasswordResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1ResetPasswordResponse
Returns a new instance of GoogleCloudIdentitytoolkitV1ResetPasswordResponse.
1684 1685 1686 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1684 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The email associated with the out-of-band code that was used.
Corresponds to the JSON property email
1661 1662 1663 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1661 def email @email end |
#kind ⇒ String
Corresponds to the JSON property kind
1666 1667 1668 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1666 def kind @kind end |
#mfa_info ⇒ Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1MfaEnrollment
Information on which multi-factor authentication (MFA) providers are enabled
for an account.
Corresponds to the JSON property mfaInfo
1672 1673 1674 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1672 def mfa_info @mfa_info end |
#new_email ⇒ String
Corresponds to the JSON property newEmail
1677 1678 1679 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1677 def new_email @new_email end |
#request_type ⇒ String
Corresponds to the JSON property requestType
1682 1683 1684 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1682 def request_type @request_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1689 1690 1691 1692 1693 1694 1695 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 1689 def update!(**args) @email = args[:email] if args.key?(:email) @kind = args[:kind] if args.key?(:kind) @mfa_info = args[:mfa_info] if args.key?(:mfa_info) @new_email = args[:new_email] if args.key?(:new_email) @request_type = args[:request_type] if args.key?(:request_type) end |