import { OtcOrderListCryptoCurrencyInfo } from './otcOrderListCryptoCurrencyInfo'; import { OtcOrderListFiatCurrencyInfo } from './otcOrderListFiatCurrencyInfo'; export declare class OtcOrderListItem { 'time'?: string; 'timestamp'?: number; 'orderId'?: string; 'tradeNo'?: string; 'type'?: string; 'status'?: string; 'dbStatus'?: string; 'fiatCurrency'?: string; 'fiatCurrencyInfo'?: OtcOrderListFiatCurrencyInfo; 'fiatAmount'?: string; 'cryptoCurrency'?: string; 'cryptoCurrencyInfo'?: OtcOrderListCryptoCurrencyInfo; 'cryptoAmount'?: string; 'rate'?: string; 'transferRemark'?: string; 'gateBankAccountIban'?: string; 'promotionCode'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }