export declare class BatchFuturesOrder { 'succeeded'?: boolean; 'label'?: string; 'detail'?: string; 'id'?: number; 'user'?: number; 'createTime'?: number; 'finishTime'?: number; 'finishAs'?: BatchFuturesOrder.FinishAs; 'status'?: BatchFuturesOrder.Status; 'contract'?: string; 'size'?: string; 'iceberg'?: string; 'price'?: string; 'close'?: boolean; 'isClose'?: boolean; 'reduceOnly'?: boolean; 'isReduceOnly'?: boolean; 'isLiq'?: boolean; 'tif'?: BatchFuturesOrder.Tif; 'left'?: string; 'fillPrice'?: string; 'text'?: string; 'tkfr'?: string; 'mkfr'?: string; 'refu'?: number; 'autoSize'?: BatchFuturesOrder.AutoSize; 'stpAct'?: BatchFuturesOrder.StpAct; 'stpId'?: number; 'marketOrderSlipRatio'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace BatchFuturesOrder { enum FinishAs { Filled, Cancelled, Liquidated, Ioc, AutoDeleveraged, ReduceOnly, PositionClosed, ReduceOut, Stp } enum Status { Open, Finished } enum Tif { Gtc, Ioc, Poc, Fok } enum AutoSize { Long, Short } enum StpAct { Co, Cn, Cb, Minus } }