Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1VerifyIosClientResponse
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1VerifyIosClientResponse
- 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 VerifyIosClient.
Instance Attribute Summary collapse
-
#receipt ⇒ String
Receipt of successful app token validation.
-
#suggested_timeout ⇒ Fixnum
Suggested time that the client should wait in seconds for delivery of the push notification.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1VerifyIosClientResponse
constructor
A new instance of GoogleCloudIdentitytoolkitV1VerifyIosClientResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1VerifyIosClientResponse
Returns a new instance of GoogleCloudIdentitytoolkitV1VerifyIosClientResponse.
3795 3796 3797 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3795 def initialize(**args) update!(**args) end |
Instance Attribute Details
#receipt ⇒ String
Receipt of successful app token validation.
Corresponds to the JSON property receipt
3787 3788 3789 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3787 def receipt @receipt end |
#suggested_timeout ⇒ Fixnum
Suggested time that the client should wait in seconds for delivery of the push
notification.
Corresponds to the JSON property suggestedTimeout
3793 3794 3795 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3793 def suggested_timeout @suggested_timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3800 3801 3802 3803 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3800 def update!(**args) @receipt = args[:receipt] if args.key?(:receipt) @suggested_timeout = args[:suggested_timeout] if args.key?(:suggested_timeout) end |