Class Item
- Assembly
- anybill.POS.Client.Abstractions.dll
Detailed description of a line item.
public class Item
- Inheritance
-
Item
- Inherited Members
Properties
Extension
Anybill specific extensions.
public AnybillItemExtension Extension { get; set; }
Property Value
Number
Item number of the item / product sold or the service provided.
public string Number { get; set; }
Property Value
PricePerUnit
Gross price of the item / product or provided service per unit. PricePerUnit * Quantity = SUM(VatAmounts[*].InclVat) A precision of 5 decimal places is used.
public decimal PricePerUnit { get; set; }
Property Value
Quantity
Quantity of the item / product sold or provided service. A precision of 5 decimal places is used.
public decimal Quantity { get; set; }
Property Value
QuantityMeasure
Quantity measure of the quantity specified.
public QuantityMeasure? QuantityMeasure { get; set; }