Class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitV2FinalizeMfaSignInResponse
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitV2FinalizeMfaSignInResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/identitytoolkit_v2/classes.rb,
lib/google/apis/identitytoolkit_v2/representations.rb,
lib/google/apis/identitytoolkit_v2/representations.rb
Overview
FinalizeMfaSignIn response.
Instance Attribute Summary collapse
-
#id_token ⇒ String
ID token for the authenticated user.
-
#phone_auth_info ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitV2FinalizeMfaPhoneResponseInfo
Phone Verification info for a FinalizeMfa response.
-
#refresh_token ⇒ String
Refresh token for the authenticated user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV2FinalizeMfaSignInResponse
constructor
A new instance of GoogleCloudIdentitytoolkitV2FinalizeMfaSignInResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV2FinalizeMfaSignInResponse
Returns a new instance of GoogleCloudIdentitytoolkitV2FinalizeMfaSignInResponse.
1964 1965 1966 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1964 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id_token ⇒ String
ID token for the authenticated user.
Corresponds to the JSON property idToken
1952 1953 1954 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1952 def id_token @id_token end |
#phone_auth_info ⇒ Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitV2FinalizeMfaPhoneResponseInfo
Phone Verification info for a FinalizeMfa response.
Corresponds to the JSON property phoneAuthInfo
1957 1958 1959 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1957 def phone_auth_info @phone_auth_info end |
#refresh_token ⇒ String
Refresh token for the authenticated user.
Corresponds to the JSON property refreshToken
1962 1963 1964 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1962 def refresh_token @refresh_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1969 1970 1971 1972 1973 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 1969 def update!(**args) @id_token = args[:id_token] if args.key?(:id_token) @phone_auth_info = args[:phone_auth_info] if args.key?(:phone_auth_info) @refresh_token = args[:refresh_token] if args.key?(:refresh_token) end |