/** * @type OmsLineItemReference: A reference to an order line item affected by a fulfillment event, with the fulfilled quantity. * * @property id: * - **Min Length:** 1 * - **Max Length:** 256 * * @property quantity: Fulfillment line-item quantity. Zero is allowed. * */ export type OmsLineItemReference = { id: string; quantity: number; } & { [key: string]: any; };