import {Enum} from "./Enum"; import {EnumValue} from "./EnumValue"; /** * Type of Crypto execution history of account that need to be received. */ export interface CryptoExecutionHistoryRequestType extends Enum { /** * All account activity. * @type {EnumValue} */ readonly AllExecutionHistory: EnumValue; /** * Only active pendings, trades and positions. * @type {EnumValue} */ readonly ActiveSession: EnumValue; }