/** * @type OrderLookupRequest: Document representing an order lookup request. * * @property email: The customer\'s email address associated with order to be looked up. * * @property orderViewCode: The order view code associated with the order to be looked up. * * @property postalCode: The billing address postal code of the order to be looked up. * - **Max Length:** 256 * * @property phone: The phone number of the order to be looked up. * - **Max Length:** 256 * */ export type OrderLookupRequest = { email?: string; orderViewCode?: string; postalCode?: string; phone?: string; } & { [key: string]: any; };