Class: Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitV2FinalizeMfaPhoneResponseInfo
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV2::GoogleCloudIdentitytoolkitV2FinalizeMfaPhoneResponseInfo
- 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
Phone Verification info for a FinalizeMfa response.
Instance Attribute Summary collapse
-
#android_verification_proof ⇒ String
Android only.
-
#android_verification_proof_expire_time ⇒ String
Android only.
-
#phone_number ⇒ String
For Android verification proof.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV2FinalizeMfaPhoneResponseInfo
constructor
A new instance of GoogleCloudIdentitytoolkitV2FinalizeMfaPhoneResponseInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV2FinalizeMfaPhoneResponseInfo
Returns a new instance of GoogleCloudIdentitytoolkitV2FinalizeMfaPhoneResponseInfo.
2328 2329 2330 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 2328 def initialize(**args) update!(**args) end |
Instance Attribute Details
#android_verification_proof ⇒ String
Android only. Long-lived replacement for valid code tied to android device.
Corresponds to the JSON property androidVerificationProof
2316 2317 2318 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 2316 def android_verification_proof @android_verification_proof end |
#android_verification_proof_expire_time ⇒ String
Android only. Expiration time of verification proof in seconds.
Corresponds to the JSON property androidVerificationProofExpireTime
2321 2322 2323 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 2321 def android_verification_proof_expire_time @android_verification_proof_expire_time end |
#phone_number ⇒ String
For Android verification proof.
Corresponds to the JSON property phoneNumber
2326 2327 2328 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 2326 def phone_number @phone_number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2333 2334 2335 2336 2337 |
# File 'lib/google/apis/identitytoolkit_v2/classes.rb', line 2333 def update!(**args) @android_verification_proof = args[:android_verification_proof] if args.key?(:android_verification_proof) @android_verification_proof_expire_time = args[:android_verification_proof_expire_time] if args.key?(:android_verification_proof_expire_time) @phone_number = args[:phone_number] if args.key?(:phone_number) end |