/** * @type Address: Document representing an order address. * * @property address1: The first address line. * - **Max Length:** 256 * * @property address2: The second address line. * - **Max Length:** 256 * * @property city: The city. * - **Max Length:** 256 * * @property companyName: The company name. * - **Max Length:** 256 * * @property countryCode: A two letter uppercase country code conforming to the [ISO 3166-1](https://www.iso.org/iso-3166-country-codes.html) alpha-2 standard. * - **Pattern:** /^[A-Z][A-Z]$/ * * @property firstName: The first name. * - **Max Length:** 256 * * @property fullName: The full name. * - **Max Length:** 256 * * @property jobTitle: The job title. * - **Max Length:** 256 * * @property lastName: The last name. * - **Max Length:** 256 * * @property phone: The phone number. * - **Max Length:** 256 * * @property postBox: The post office box. * - **Max Length:** 256 * * @property postalCode: The postal code. * - **Max Length:** 256 * * @property salutation: The salutation. * - **Max Length:** 256 * * @property secondName: The second name. * - **Max Length:** 256 * * @property stateCode: The state code. * - **Max Length:** 256 * * @property suffix: The suffix. * - **Max Length:** 256 * * @property suite: The suite. * - **Max Length:** 256 * * @property title: The title. * - **Max Length:** 256 * */ export type Address = { address1?: string; address2?: string; city?: string; companyName?: string; countryCode?: string; firstName?: string; fullName?: string; jobTitle?: string; lastName?: string; phone?: string; postBox?: string; postalCode?: string; salutation?: string; secondName?: string; stateCode?: string; suffix?: string; suite?: string; title?: string; } & { [key: string]: any; };