UNPKG

@adyen/api-library

Version:

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

68 lines (67 loc) 1.7 kB
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 name of the street and the number of the building. For example: **Simon Carmiggeltstraat 6-50**. */ "line1"?: string; /** * Additional information about the delivery address. For example, an apartment number. */ "line2"?: string; /** * Additional information about the delivery address. */ "line3"?: 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: { [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(); }