@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
40 lines (39 loc) • 996 B
TypeScript
import { Address } from "./address";
import { Card } from "./card";
import { Name } from "./name";
export declare class FundSource {
/**
* A map of name-value pairs for passing additional or industry-specific data.
*/
"additionalData"?: {
[key: string]: string;
};
"billingAddress"?: Address | null;
"card"?: Card | null;
/**
* Email address of the person.
*/
"shopperEmail"?: string;
"shopperName"?: Name | null;
/**
* Phone number of the person
*/
"telephoneNumber"?: 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();
}