Class LineVatAmount
Amount per tax rate and line item.
Inheritance
System.Object
LineVatAmount
Namespace: anybill.POS.Client.Models.Bill.Data.Line.VatAmount
Assembly: anybill.POS.Client.Abstractions.dll
Syntax
public class LineVatAmount
Properties
ExclVat
Net amount for this tax rate. A precision of 5 decimal places is used.
Declaration
public decimal ExclVat { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
InclVat
Gross amount for this tax rate. A precision of 5 decimal places is used.
Declaration
public decimal InclVat { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
Percentage
Sales tax rate * 100, 19% is shown as 19.00. A precision of 2 decimal places is used.
Declaration
public decimal Percentage { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
Vat
Absolute tax amount. A precision of 5 decimal places is used.
Declaration
public decimal Vat { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |