UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

51 lines (50 loc) 1.08 kB
import { Amount } from './amount'; export declare class ForexQuote { /** * The account name. */ 'account'?: string; /** * The account type. */ 'accountType'?: string; 'baseAmount'?: Amount | null; /** * The base points. */ 'basePoints': number; 'buy'?: Amount | null; 'interbank'?: Amount | null; /** * The reference assigned to the forex quote request. */ 'reference'?: string; 'sell'?: Amount | null; /** * The signature to validate the integrity. */ 'signature'?: string; /** * The source of the forex quote. */ 'source'?: string; /** * The type of forex. */ 'type'?: string; /** * The date until which the forex quote is valid. */ 'validTill': Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }