import type * as Merge from "../../../index"; /** * # The Item Object * ### Description * The `Item` object refers to the goods involved in a transaction. * * ### Usage Example * Fetch from the `LIST Items` endpoint and view a company's items. */ export interface PatchedItemRequestRequest { /** The item's name. */ name?: string; /** * The item's status. * * * `ACTIVE` - ACTIVE * * `ARCHIVED` - ARCHIVED */ status?: Merge.accounting.PatchedItemRequestRequestStatus; /** * The item's type. * * * `INVENTORY` - INVENTORY * * `NON_INVENTORY` - NON_INVENTORY * * `SERVICE` - SERVICE * * `UNKNOWN` - UNKNOWN */ type?: Merge.accounting.PatchedItemRequestRequestType; /** The item's unit price. */ unitPrice?: number; /** The price at which the item is purchased from a vendor. */ purchasePrice?: number; /** References the default account used to record a purchase of the item. */ purchaseAccount?: string; /** References the default account used to record a sale. */ salesAccount?: string; /** The company the item belongs to. */ company?: string; /** The default purchase tax rate for this item. */ purchaseTaxRate?: string; /** The default sales tax rate for this item. */ salesTaxRate?: string; integrationParams?: Record; linkedAccountParams?: Record; }