Interface DeviceTokenApplePush

A token for Apple Push Notification service. Subtype of DeviceToken.

interface DeviceTokenApplePush {
    @type: "deviceTokenApplePush";
    device_token: string;
    is_app_sandbox?: boolean;
}

Properties

@type: "deviceTokenApplePush"
device_token: string

Device token; may be empty to deregister a device.

is_app_sandbox?: boolean

True, if App Sandbox is enabled.