export declare class OrderHistoryListDataList { 'orderId'?: number; 'symbol'?: string; 'symbolDesc'?: string; 'priceType'?: OrderHistoryListDataList.PriceType; 'orderOptType'?: OrderHistoryListDataList.OrderOptType; 'state'?: number; 'stateDesc'?: string; 'side'?: OrderHistoryListDataList.Side; 'volume'?: string; 'fillVolume'?: string; 'closePnl'?: string; 'price'?: string; 'triggerPrice'?: string; 'priceTp'?: string; 'priceSl'?: string; 'timeSetup'?: number; 'timeDone'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace OrderHistoryListDataList { enum PriceType { Market, Trigger } enum OrderOptType { NUMBER_1, NUMBER_2, NUMBER_3, NUMBER_4, NUMBER_5, NUMBER_6 } enum Side { NUMBER_1, NUMBER_2 } }