import type { OmsReturnProductItem } from './OmsReturnProductItem'; /** * @type OmsReturnOrderRequest: Document representing a request to initiate the return of one or more items of an order that is integrated with Order Management (OMS). * * @property productItems: The product items of the order for which to initiate a return. * * @property orderAccessCode: A time-limited access code that serves as an alternative access grant for guest shoppers who have lost their original session. The code is generated by calling the `requestOrderAccessCode` endpoint, which delivers it via email to the address on the order. The shopper provides this code to authorize the request. The code is valid for 15 minutes after generation. * - **Pattern:** /^\\d{6}$/ * - **Max Length:** 6 * */ export type OmsReturnOrderRequest = { productItems: Array; orderAccessCode?: string; } & { [key: string]: any; };