Table of Contents

Class Item

Namespace
anybill.POS.Client.Models.Receipt.Data.Line.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

AnybillItemExtension

Number

Item number of the item / product sold or the service provided.

public string Number { get; set; }

Property Value

string

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

decimal

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

decimal

QuantityMeasure

Quantity measure of the quantity specified.

public QuantityMeasure? QuantityMeasure { get; set; }

Property Value

QuantityMeasure?