Class LineDiscountVatAmount
- Assembly
- anybill.POS.Client.Abstractions.dll
Amount per tax rate and line item.
public class LineDiscountVatAmount
- Inheritance
-
LineDiscountVatAmount
- Inherited Members
Properties
ExclVat
Net amount for this tax rate. A precision of 5 decimal places is used.
public decimal? ExclVat { get; set; }
Property Value
GroupId
Id of the VAT defined in the data VatAmounts. Must references a groupId defined in Data.VatAmounts. A vat Id is required if custom VAT naming is required.
public string GroupId { get; set; }
Property Value
InclVat
Gross amount for this tax rate. A precision of 5 decimal places is used.
public decimal InclVat { get; set; }
Property Value
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. A precision of 5 decimal places is used.
public decimal? Vat { get; set; }