import type * as Merge from "../../../index"; /** * # The SalesOrderLine Object * ### Description * The `SalesOrderLine` object represents a specific line item on a sales order. * * ### Usage Example * Fetch from the `GET SalesOrder` endpoint and view a company's sales order line items. */ export interface SalesOrderLine { 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; /** Description of the line item. */ description?: string; /** The unit price of the item. */ unitPrice?: string; /** Quantity ordered for this line. */ quantity?: string; item?: Merge.accounting.SalesOrderLineItem; /** The tax rate of the line item. */ taxRate?: Merge.accounting.SalesOrderLineTaxRate; /** The dimensions or classification tags. */ trackingCategories?: (Merge.accounting.SalesOrderLineTrackingCategoriesItem | undefined)[]; /** The subsidiary associated with the order. */ company?: Merge.accounting.SalesOrderLineCompany; /** When the third party's sales order line item was created. */ remoteCreatedAt?: Date; /** When the third party's sales order 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[]; }