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.
3932 3933 3934 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3932 def initialize(**args) update!(**args) end |
Instance Attribute Details
#receipt ⇒ String
Receipt of successful app token validation.
Corresponds to the JSON property receipt
3924 3925 3926 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3924 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
3930 3931 3932 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3930 def suggested_timeout @suggested_timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3937 3938 3939 3940 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3937 def update!(**args) @receipt = args[:receipt] if args.key?(:receipt) @suggested_timeout = args[:suggested_timeout] if args.key?(:suggested_timeout) end |