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 ItemFulfillmentLine { id?: string; /** The third-party API ID of the matching object. */ remoteId?: string; /** The datetime that this object was created by Merge. */ createdAt?: Date; /** The datetime that this object was modified by Merge. */ modifiedAt?: Date; item?: Merge.accounting.ItemFulfillmentLineItem; salesOrderLine?: Merge.accounting.ItemFulfillmentLineSalesOrderLine; /** The amount of item being delivered. */ quantity?: string; /** The dimensions or classification tags. */ trackingCategories?: (Merge.accounting.ItemFulfillmentLineTrackingCategoriesItem | 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; /** Indicates whether or not this object has been deleted in the third party platform. Full coverage deletion detection is a premium add-on. Native deletion detection is offered for free with limited coverage. [Learn more](https://docs.merge.dev/integrations/hris/supported-features/). */ remoteWasDeleted?: boolean; remoteFields?: Merge.accounting.RemoteField[]; }