@airwallex/node-sdk
Version:
Airwallex Node.js SDK
13 lines • 614 B
TypeScript
import { CustomRequestOptions } from '../../common/request';
import { FxRatesDto } from '../../model/fxRatesDto';
export interface ParamsTransactionalFXRatesApigetCurrentFxRate {
buy_amount?: number;
buy_currency: string;
conversion_date?: string;
sell_amount?: number;
sell_currency: string;
}
export declare class TransactionalFXRatesApi {
getCurrentFxRate({ buy_amount, buy_currency, conversion_date, sell_amount, sell_currency }: ParamsTransactionalFXRatesApigetCurrentFxRate, options?: CustomRequestOptions): Promise<FxRatesDto>;
}
//# sourceMappingURL=transactionalFXRatesApi.d.ts.map