import { EnumValue } from "../../enums/EnumValue"; import { BaseMessage } from "../BaseMessage"; import { UserInfo } from "../user/UserInfo"; /** * Response on authentication request when authentication was successful. */ export interface AuthenticationSuccessResponse extends BaseMessage { /** * Information about user and it's permissions. * @type {UserInfo} */ UserInfo: UserInfo; /** * Represents server channel that send response. * @type {EnumValue} */ Channel: EnumValue; }