Package com.wallee.android.till.sdk.data
Class LineItem
- java.lang.Object
-
- com.wallee.android.till.sdk.data.LineItem
-
public class LineItem extends Object
One product or fee in the list of items that makes up a transaction.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
LineItem.Builder
static class
LineItem.ListBuilder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getId()
String
getName()
BigDecimal
getQuantity()
String
getSku()
Set<Tax>
getTaxes()
BigDecimal
getTotalAmountIncludingTax()
LineItemType
getType()
BigDecimal
getUnitPriceIncludingTax()
-
-
-
Method Detail
-
getId
public String getId()
-
getSku
public String getSku()
-
getName
public String getName()
-
getQuantity
public BigDecimal getQuantity()
-
getType
public LineItemType getType()
-
getUnitPriceIncludingTax
public BigDecimal getUnitPriceIncludingTax()
-
getTotalAmountIncludingTax
public BigDecimal getTotalAmountIncludingTax()
-
-