Interface UpdateServiceNotification

A service notification from the server was received. Upon receiving this the application must show a popup with the content of the notification. Subtype of Update.

interface UpdateServiceNotification {
    @type: "updateServiceNotification";
    content: MessageContent;
    type: string;
}

Properties

Properties

@type: "updateServiceNotification"

Notification content.

type: string

Notification type. If type begins with "AUTH_KEY_DROP_", then two buttons "Cancel" and "Log out" must be shown under notification; if user presses the second, all local data must be destroyed using Destroy method.