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.



3932
3933
3934
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3932

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

Instance Attribute Details

#receiptString

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

Returns:

  • (String)


3924
3925
3926
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3924

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)


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