import {Enum} from "./Enum"; import {EnumValue} from "./EnumValue"; /** * Code of SystemNotification. */ export interface NotificationCode extends Enum { /** * Unknown code. * @type {EnumValue} */ readonly Unknown: EnumValue; /** * Value indicate that account is not authenticated. * @type {EnumValue} */ readonly NotAuthenticated: EnumValue; /** * Value indicate that message is not supported on server side. * @type {EnumValue} */ readonly MessageNotSupported: EnumValue; /** * Value indicate that current account has no permission to execute such operation. * @type {EnumValue} */ readonly AccessDeny: EnumValue; /** * Notify that client must disconnect from server. * @type {EnumValue} */ readonly UserForceDisconnect: EnumValue; }