@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
44 lines (43 loc) • 1.11 kB
TypeScript
export declare class UpdatableAddress {
/**
* The name of the city.
*/
"city"?: string;
/**
* The street address.
*/
"line1"?: string;
/**
* Second address line.
*/
"line2"?: string;
/**
* Third address line.
*/
"line3"?: string;
/**
* The postal code.
*/
"postalCode"?: string;
/**
* The state or province code as defined in [ISO 3166-2](https://www.iso.org/standard/72483.html). For example, **ON** for Ontario, Canada. Required for the following countries: - Australia - Brazil - Canada - India - Mexico - New Zealand - United States
*/
"stateOrProvince"?: 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();
}