Class BillDiscountVatAmount
Amount per tax rate and bill discount.
Inheritance
System.Object
BillDiscountVatAmount
Namespace: anybill.POS.Client.Models.Bill.Data.Extension.Discount.VatAmount
Assembly: anybill.POS.Client.Abstractions.dll
Syntax
public class BillDiscountVatAmount
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.Nullable<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.Nullable<System.Decimal> |