/** * @type CustomerInfo: The customer information for guest or logged-in customers. * * @property customerId: The customer ID. It is read only. * - **Max Length:** 100 * * @property customerName: The customer name. * * @property customerNo: The customer number. * - **Max Length:** 100 * * @property email: The customer\'s email address. * */ export type CustomerInfo = { customerId?: string; customerName?: string; customerNo?: string; email: string; } & { [key: string]: any; };