pnz-payments-sdk
Version:
PNZ Payments Account and Transaction API
20 lines • 829 B
JavaScript
/**
* Account and Transaction API SpecificationLib
*
* This file was automatically generated by APIMATIC v3.0 ( https://www.apimatic.io ).
*/
import { lazy, number, object, optional, string } from '../schema';
import { instructedAmountSchema } from './instructedAmount';
export const currencyExchangeSchema = object({
sourceCurrency: ['SourceCurrency', string()],
targetCurrency: ['TargetCurrency', optional(string())],
unitCurrency: ['UnitCurrency', optional(string())],
exchangeRate: ['ExchangeRate', number()],
contractIdentification: ['ContractIdentification', optional(string())],
quotationDate: ['QuotationDate', optional(string())],
instructedAmount: [
'InstructedAmount',
optional(lazy(() => instructedAmountSchema)),
],
});
//# sourceMappingURL=currencyExchange.js.map