import {Enum} from "./Enum"; import {EnumValue} from "./EnumValue"; /** * Possible privileges of administrator. */ export interface AdminType extends Enum { /** * It's a not admin user. * @type {EnumValue} */ readonly None: EnumValue; /** * Administrator that can only view statistic of all linked accounts. * @type {EnumValue} */ readonly ViewOnly: EnumValue; /** * Administrator that can view statistic of all accounts and close positions when it is needed. * @type {EnumValue} */ readonly Trading: EnumValue; /** * Administrator that can view statistic of all accounts, close positions and change risk configurations. * @type {EnumValue} */ readonly Full: EnumValue; }