class Google::Apis::FirebaseappcheckV1beta::GoogleFirebaseAppcheckV1betaExchangeDeviceCheckTokenRequest

Request message for the ExchangeDeviceCheckToken method.

Attributes

device_token[RW]

The `device_token` as returned by Apple's client-side [DeviceCheck API](https:/ /developer.apple.com/documentation/devicecheck/dcdevice). This is the Base64 encoded `Data` (Swift) or `NSData` (ObjC) object. Corresponds to the JSON property `deviceToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 490
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/firebaseappcheck_v1beta/classes.rb, line 495
def update!(**args)
  @device_token = args[:device_token] if args.key?(:device_token)
end