Class DiscountLineVatAmount
Amount per tax rate and discount.
Inheritance
System.Object
DiscountLineVatAmount
Namespace: anybill.POS.Client.Models.Bill.Data.Line.Extension.VatAmount
Assembly: anybill.POS.Client.Abstractions.dll
Syntax
public class DiscountLineVatAmount
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 |
RelatedLines
Reference to related lines by the 'SequenceNumber'.
Declaration
public List<int> RelatedLines { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Int32> |
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> |