Package veryfi.models
Class SharedLineItem
java.lang.Object
veryfi.models.SharedLineItem
- Direct Known Subclasses:
AddLineItem
,UpdateLineItem
Abstract base class for line item models.
This class contains all the common fields that are shared between
AddLineItem
and UpdateLineItem
. These fields represent
optional properties that can be set on line items in Veryfi documents.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionCategory classification for the line item.Discount rate percentage for the line item.End date for the line item (format: YYYY-MM-DD).Harmonized System Nomenclature (HSN) code for the line item.Unit price for the line item.Quantity of the line item.Section or department for the line item.Stock Keeping Unit (SKU) for the line item.Start date for the line item (format: YYYY-MM-DD).Tax amount for the line item.Tax rate percentage for the line item.Unit of measure for the line item (e.g., "each", "kg", "lb").Universal Product Code (UPC) for the line item.Weight of the line item. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
sku
Stock Keeping Unit (SKU) for the line item. Optional field that can be null. -
category
Category classification for the line item. Optional field that can be null. -
tax
Tax amount for the line item. Optional field that can be null. -
price
Unit price for the line item. Optional field that can be null. -
unitOfMeasure
Unit of measure for the line item (e.g., "each", "kg", "lb"). Optional field that can be null. -
quantity
Quantity of the line item. Optional field that can be null. -
upc
Universal Product Code (UPC) for the line item. Optional field that can be null. -
taxRate
Tax rate percentage for the line item. Optional field that can be null. -
discountRate
Discount rate percentage for the line item. Optional field that can be null. -
startDate
Start date for the line item (format: YYYY-MM-DD). Optional field that can be null. -
endDate
End date for the line item (format: YYYY-MM-DD). Optional field that can be null. -
hsn
Harmonized System Nomenclature (HSN) code for the line item. Optional field that can be null. -
section
Section or department for the line item. Optional field that can be null. -
weight
Weight of the line item. Optional field that can be null.
-
-
Constructor Details
-
SharedLineItem
public SharedLineItem()
-