Interface AccountRegisterDeviceParams

interface AccountRegisterDeviceParams {
    device_id: string;
    device_model?: string;
    device_year?: number;
    sandbox?: number | boolean;
    settings?: string;
    system_version?: string;
    token: string;
    [key: string]: any;
}

Indexable

[key: string]: any

Properties

device_id: string

Unique device ID.

device_model?: string

String name of device model.

device_year?: number

Device year.

sandbox?: number | boolean
settings?: string

Push settings in a [vk.com/dev/push_settings|special format].

system_version?: string

String version of device operating system.

token: string

Device token used to send notifications. (for mpns, the token shall be URL for sending of notifications)

Generated using TypeDoc