import type * as Merge from "../../../index"; /** * # The ItemFulfillmentLine Object * ### Description * The `ItemFulfillmentLine` object represents the specific quantity of a particular product or service that has actually been shipped or delivered against its corresponding order line. * * ### Usage Example * Fetch from the `GET ItemFulfillment` endpoint and view a company's item fulfillment lines. */ export interface ItemFulfillmentLineRequest { /** The third-party API ID of the matching object. */ remoteId?: string; item?: Merge.accounting.ItemFulfillmentLineRequestItem; salesOrderLine?: Merge.accounting.ItemFulfillmentLineRequestSalesOrderLine; /** The amount of item being delivered. */ quantity?: string; /** The dimensions or classification tags. */ trackingCategories?: (Merge.accounting.ItemFulfillmentLineRequestTrackingCategoriesItem | undefined)[]; /** When the third party's item fulfillment line item was created. */ remoteCreatedAt?: Date; /** When the third party's item fulfillment line item was updated. */ remoteUpdatedAt?: Date; integrationParams?: Record; linkedAccountParams?: Record; remoteFields?: Merge.accounting.RemoteFieldRequest[]; }