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.



3830
3831
3832
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3830

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

Instance Attribute Details

#receiptString

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

Returns:

  • (String)


3822
3823
3824
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3822

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)


3828
3829
3830
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3828

def suggested_timeout
  @suggested_timeout
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3835
3836
3837
3838
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3835

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