import type { OmsShipment } from './OmsShipment'; /** * @type OmsData: 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_ordersummary.htm for more information. * * @property status: Current status of the order * * @property shipments: List of shipments associated with the order * */ export type OmsData = { status?: string; shipments?: Array; } & { [key: string]: any; };