Table of Contents

Class DiscountLineVatAmount

Namespace
anybill.POS.Client.Models.Receipt.Data.Line.Extension.VatAmount
Assembly
anybill.POS.Client.Abstractions.dll

Amount per tax rate and discount.

public class DiscountLineVatAmount
Inheritance
DiscountLineVatAmount
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

decimal?

GroupId

The groupId of the VAT rate. Must references a groupId defined in Data.VatAmounts Is required when a group in Data.VatAmounts is used.

public string GroupId { get; set; }

Property Value

string

InclVat

Gross amount for this tax rate. A precision of 5 decimal places is used.

public decimal InclVat { get; set; }

Property Value

decimal

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

decimal

RelatedLines

Reference to related lines by the 'SequenceNumber'.

public List<int> RelatedLines { get; set; }

Property Value

List<int>

Vat

Absolute tax amount. A precision of 5 decimal places is used.

public decimal? Vat { get; set; }

Property Value

decimal?