UNPKG

@adyen/api-library

Version:

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

34 lines (33 loc) 825 B
import { Amount } from "./amount"; export declare class Financier { "amount": Amount; /** * The financier\'s first name. */ "firstName": string; /** * The financier\'s last name. */ "lastName": string; /** * The city and country/region where the financier is currently located. For example: Chicago, USA */ "location": string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }