@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
56 lines (55 loc) • 1.34 kB
TypeScript
export declare class BulkAddress {
/**
* The name of the city.
*/
"city"?: string;
/**
* The name of the company.
*/
"company"?: string;
/**
* The two-character ISO-3166-1 alpha-2 country code. For example, **US**.
*/
"country": string;
/**
* The email address.
*/
"email"?: string;
/**
* The house number or name.
*/
"houseNumberOrName"?: string;
/**
* The full telephone number.
*/
"mobile"?: string;
/**
* The postal code. Maximum length: * 5 digits for addresses in the US. * 10 characters for all other countries.
*/
"postalCode"?: string;
/**
* The two-letter ISO 3166-2 state or province code. Maximum length: 2 characters for addresses in the US.
*/
"stateOrProvince"?: string;
/**
* The streetname of the house.
*/
"street"?: string;
static readonly discriminator: string | undefined;
static readonly mapping: {
[]: 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();
}