import {BaseMessage} from "./BaseMessage"; import {EnumValue} from "../enums/EnumValue"; /** * System messages to notify client about something important. */ export interface SystemNotification extends BaseMessage { /** * Channel from which notification was received. * @type {EnumValue} */ Channel: EnumValue; /** * Code of the notification. * @type {EnumValue} */ NotificationCode: EnumValue; /** * Text message of the notification. * @type {string} */ Text: string; }