UNPKG

@adyen/api-library

Version:

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

30 lines (29 loc) 779 B
import { Address } from './address'; import { Name } from './name'; export declare class FundOrigin { 'billingAddress'?: Address | null; /** * The email address of the person funding the money. */ 'shopperEmail'?: string; 'shopperName'?: Name | null; /** * The phone number of the person funding the money. */ 'telephoneNumber'?: string; /** * The unique identifier of the wallet where the funds are coming from. */ 'walletIdentifier'?: string; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }