Class DataVatAmount
- Assembly
- anybill.POS.Client.Abstractions.dll
Total amount per tax rate.
public class DataVatAmount
- Inheritance
-
DataVatAmount
- Inherited Members
Properties
ExclVat
Net amount for this tax rate. A precision of 2 decimal places is used.
public decimal ExclVat { get; set; }
Property Value
GroupId
The groupId of the VAT rate. Maximal length is 20 characters.
public string GroupId { get; set; }
Property Value
GroupName
The group name of the VAT rate. Will be printed on the PDF receipt. Maximal length is 5 characters.
public string GroupName { get; set; }
Property Value
InclVat
Gross amount for this tax rate. A precision of 2 decimal places is used.
public decimal InclVat { get; set; }
Property Value
IsHidden
This is an optional flag and should only be set to false if the vat amount should not be displayed in the vat amounts table. Default = false
public bool? IsHidden { get; set; }
Property Value
- bool?
Percentage
Sales tax rate * 100, 19% is shown as 19.00. A precision of 2 decimal places is used.
public decimal Percentage { get; set; }
Property Value
Vat
Absolute tax amount. InclVat - ExclVat = Vat. A precision of 2 decimal places is used.
public decimal Vat { get; set; }