@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
36 lines (35 loc) • 947 B
TypeScript
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 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();
}