Class: Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1VerifyIosClientRequest
- Inherits:
-
Object
- Object
- Google::Apis::IdentitytoolkitV1::GoogleCloudIdentitytoolkitV1VerifyIosClientRequest
- 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
-
#app_token ⇒ String
A device token that the iOS client gets after registering to APNs (Apple Push Notification service).
-
#is_sandbox ⇒ Boolean
(also: #is_sandbox?)
Whether the app token is in the iOS sandbox.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIdentitytoolkitV1VerifyIosClientRequest
constructor
A new instance of GoogleCloudIdentitytoolkitV1VerifyIosClientRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_token ⇒ String
A device token that the iOS client gets after registering to APNs (Apple Push
Notification service).
Corresponds to the JSON property appToken
3897 3898 3899 |
# File 'lib/google/apis/identitytoolkit_v1/classes.rb', line 3897 def app_token @app_token end |
#is_sandbox ⇒ Boolean 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
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 |