UNPKG

@airwallex/node-sdk

Version:

Airwallex Node.js SDK

21 lines 756 B
import { ApplicationFeeOption } from './applicationFeeOption'; export interface FxQuoteRequestDto { application_fee_options?: Array<ApplicationFeeOption>; buy_amount?: number; buy_currency: string; conversion_date?: string; sell_amount?: number; sell_currency: string; validity: FxQuoteRequestDto.ValidityEnum; } export declare namespace FxQuoteRequestDto { const validValidityEnum: readonly ["MIN_1", "MIN_15", "MIN_30", "HR_1", "HR_4", "HR_8", "HR_24"]; type ValidityEnum = (typeof validValidityEnum)[number] | 'UNKNOWN'; const discriminator: string; const attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; } //# sourceMappingURL=fxQuoteRequestDto.d.ts.map