/** * @type CustomerAddressInfo: Result document of product list addresses. * * @property addressId: The ID of the address. * - **Max Length:** 256 * * @property title: The link title. * */ export type CustomerAddressInfo = { addressId: string; title: string; } & { [key: string]: any; };