/** * @type CustomerAddress: Address that is associated with a shopper (billing, shipping, mailing, and so on). * * @property address1: The first address. * - **Max Length:** 256 * * @property address2: The second address. * - **Max Length:** 256 * * @property addressId: The ID of the address as specified by account owner. * - **Max Length:** 256 * * @property city: The city. * - **Max Length:** 256 * * @property companyName: The company name. * - **Max Length:** 256 * * @property countryCode: The two-letter ISO 3166-1 (Alpha-2) country code. * - **Pattern:** /^([A-Z][A-Z])$/ * - **Max Length:** 2 * * @property creationDate: Returns the value of attribute \'creationDate\'. * * @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 lastModified: Returns the value of attribute \'lastModified\'. * * @property lastName: The last name. * - **Max Length:** 256 * * @property phone: The phone number. * - **Max Length:** 32 * * @property postBox: The post box. * - **Max Length:** 256 * * @property postalCode: The postal code. * - **Max Length:** 256 * * @property preferred: The preferred attribute. * * @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:** 32 * * @property title: The title. * - **Max Length:** 256 * */ export type CustomerAddress = { address1?: string; address2?: string; addressId: string; city?: string; companyName?: string; countryCode: string; creationDate?: string; firstName?: string; fullName?: string; jobTitle?: string; lastModified?: string; lastName: string; phone?: string; postBox?: string; postalCode?: string; preferred?: boolean; salutation?: string; secondName?: string; stateCode?: string; suffix?: string; suite?: string; title?: string; } & { [key: string]: any; };