Class FinancialDocumentV1LineItem
- java.lang.Object
-
- com.mindee.parsing.standard.BaseField
-
- com.mindee.product.financialdocument.FinancialDocumentV1LineItem
-
- All Implemented Interfaces:
LineItemField
,PositionData
public class FinancialDocumentV1LineItem extends BaseField implements LineItemField
List of line item details.
-
-
Constructor Summary
Constructors Constructor Description FinancialDocumentV1LineItem()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getDescription()
The item description.String
getProductCode()
The product code referring to the item.Double
getQuantity()
The item quantityDouble
getTaxAmount()
The item tax amount.Double
getTaxRate()
The item tax rate in percentage.Double
getTotalAmount()
The item total amount.String
getUnitMeasure()
The item unit of measure.Double
getUnitPrice()
The item unit price.boolean
isEmpty()
String
toString()
String
toTableLine()
Output the line in a format suitable for inclusion in an rST table.-
Methods inherited from class com.mindee.parsing.standard.BaseField
canEqual, equals, getBoundingBox, getConfidence, getPageId, getPolygon, hashCode
-
-
-
-
Method Detail
-
isEmpty
public boolean isEmpty()
-
toTableLine
public String toTableLine()
Output the line in a format suitable for inclusion in an rST table.- Specified by:
toTableLine
in interfaceLineItemField
-
getDescription
public String getDescription()
The item description.
-
getProductCode
public String getProductCode()
The product code referring to the item.
-
getQuantity
public Double getQuantity()
The item quantity
-
getTaxAmount
public Double getTaxAmount()
The item tax amount.
-
getTaxRate
public Double getTaxRate()
The item tax rate in percentage.
-
getTotalAmount
public Double getTotalAmount()
The item total amount.
-
getUnitMeasure
public String getUnitMeasure()
The item unit of measure.
-
getUnitPrice
public Double getUnitPrice()
The item unit price.
-
-