/** * @type OmsProductData: Additional information retrieved from Order Management (OMS) See https://developer.salesforce.com/docs/atlas.en-us.order_management_developer_guide.meta/order_management_developer_guide/sforce_api_objects_orderitemsummary.htm for more information. Only available in context of an order. * * @property status: Order Management (OMS) status * * @property quantityAvailableToCancel: The quantity that can be cancelled. * */ export type OmsProductData = { status?: OmsProductDataStatusEnum; quantityAvailableToCancel?: number; } & { [key: string]: any; }; export type OmsProductDataStatusEnum = 'ordered' | 'returned' | 'canceled' | 'paid' | 'reshipped' | 'fulfilled' | 'partially_fulfilled' | 'allocated' | 'partially_allocated' | 'return_initiated';