Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1VerifyIosClientRequest

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

Request message for VerifyIosClient

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1VerifyIosClientRequest

Returns a new instance of GoogleCloudIdentitytoolkitV1VerifyIosClientRequest.



3906
3907
3908
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3906

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

Instance Attribute Details

#app_tokenString

A device token that the iOS client gets after registering to APNs (Apple Push Notification service). Corresponds to the JSON property appToken

Returns:

  • (String)


3897
3898
3899
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3897

def app_token
  @app_token
end

#is_sandboxBoolean Also known as: is_sandbox?

Whether the app token is in the iOS sandbox. If false, the app token is in the production environment. Corresponds to the JSON property isSandbox

Returns:

  • (Boolean)


3903
3904
3905
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3903

def is_sandbox
  @is_sandbox
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3911
3912
3913
3914
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3911

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