Interface PushNotificationConfig

Where the server should send notifications when disconnected.

interface PushNotificationConfig {
    authentication?: PushNotificationAuthenticationInfo;
    id?: string;
    token?: string;
    url: string;
}

Properties

authentication?: PushNotificationAuthenticationInfo
id?: string

Push Notification ID - created by server to support multiple callbacks

token?: string

Token unique to this task/session.

url: string

URL for sending the push notifications.