/** * @type CustomerAddress: Any address that is associated with a customer (billing, shipping, mailing, and so on). * * @property address1: The customer\'s first address. * - **Max Length:** 256 * * @property address2: The customer\'s second address value. * - **Max Length:** 256 * * @property addressId: The customer address ID. * - **Max Length:** 256 * * @property city: The customer\'s city. * - **Max Length:** 256 * * @property companyName: The customer\'s company name. * - **Max Length:** 256 * * @property countryCode: The customer\'s two-character country code per ISO 3166-1 alpha-2. * - **Max Length:** 2 * * @property creationDate: Returns the value of attribute \'creationDate\'. * * @property etag: The generated eTag representing the state of the customer address. * * @property firstName: The customer\'s first name. * - **Max Length:** 256 * * @property fullName: The concatenation of the customer\'s first, middle, last names, and suffix. * - **Max Length:** 1027 * * @property jobTitle: The customer\'s job title. * - **Max Length:** 256 * * @property lastModified: Returns the value of attribute \'lastModified\'. * * @property lastName: The customer\'s last name. * - **Max Length:** 256 * * @property phone: The customer\'s phone number. * - **Max Length:** 32 * * @property postBox: The customer\'s post box. * - **Max Length:** 256 * * @property postalCode: The customer\'s postal code. * - **Max Length:** 256 * * @property salutation: The customer\'s salutation. * - **Max Length:** 256 * * @property secondName: The customer\'s second name. * - **Max Length:** 256 * * @property stateCode: The customer\'s state. * - **Max Length:** 256 * * @property suffix: The customer\'s suffix. * - **Max Length:** 256 * * @property suite: The customer\'s suite. * - **Max Length:** 32 * * @property title: The customer\'s title. * - **Max Length:** 256 * */ export type CustomerAddress = { address1?: string; address2?: string; addressId: string; city?: string; companyName?: string; countryCode: string; creationDate?: string; etag?: string; firstName?: string; fullName?: string; jobTitle?: string; lastModified?: string; lastName: string; phone?: string; postBox?: string; postalCode?: string; salutation?: string; secondName?: string; stateCode?: string; suffix?: string; suite?: string; title?: string; } & { [key: string]: any; };