/** * @type ProductListShippingAddress: Document representing a product list shipping address. * * @property addressId: The ID of this address. * - **Min Length:** 1 * * @property city: The city of this address. * * @property firstName: The first name of this address. * * @property lastName: The last name of this address. * */ export type ProductListShippingAddress = { addressId: string; city?: string; firstName?: string; lastName?: string; } & { [key: string]: any; };