import {Enum} from "./Enum"; import {EnumValue} from "./EnumValue"; /** * Possible privileges of manager. */ export interface AdminType extends Enum { /** * It's a not manager user. * @type {EnumValue} */ readonly None: EnumValue; /** * Manager that has manager permission for all Clearings. * @type {EnumValue} */ readonly GlobalManager: EnumValue; /** * Manager that has manager permission only in his clearing. * @type {EnumValue} */ readonly ClearingManager: EnumValue; }