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 SalesOrderLineRequest { /** The third-party API ID of the matching object. */ remoteId?: string; /** 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.SalesOrderLineRequestItem; /** The tax rate of the line item. */ taxRate?: Merge.accounting.SalesOrderLineRequestTaxRate; /** The dimensions or classification tags. */ trackingCategories?: (Merge.accounting.SalesOrderLineRequestTrackingCategoriesItem | undefined)[]; /** The subsidiary associated with the order. */ company?: Merge.accounting.SalesOrderLineRequestCompany; /** 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; integrationParams?: Record; linkedAccountParams?: Record; remoteFields?: Merge.accounting.RemoteFieldRequest[]; }