Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1VerifyIosClientResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1VerifyIosClientResponse

Returns a new instance of GoogleCloudIdentitytoolkitV1VerifyIosClientResponse.



3955
3956
3957
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3955

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#receiptString

Receipt of successful app token validation. Corresponds to the JSON property receipt

Returns:

  • (String)


3947
3948
3949
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3947

def receipt
  @receipt
end

#suggested_timeoutFixnum

Suggested time that the client should wait in seconds for delivery of the push notification. Corresponds to the JSON property suggestedTimeout

Returns:

  • (Fixnum)


3953
3954
3955
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3953

def suggested_timeout
  @suggested_timeout
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3960
3961
3962
3963
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3960

def update!(**args)
  @receipt = args[:receipt] if args.key?(:receipt)
  @suggested_timeout = args[:suggested_timeout] if args.key?(:suggested_timeout)
end