import { SpotPricePutOrder } from './spotPricePutOrder'; import { SpotPriceTrigger } from './spotPriceTrigger'; export declare class SpotPriceTriggeredOrder { 'trigger': SpotPriceTrigger; 'put': SpotPricePutOrder; 'id'?: number; 'user'?: number; 'market': string; 'ctime'?: number; 'ftime'?: number; 'firedOrderId'?: number; 'status'?: string; 'reason'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }