Table of Contents

Class DataVatAmount

Namespace
anybill.POS.Client.Models.Receipt.Data.VatAmount
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

decimal

GroupId

The groupId of the VAT rate. Maximal length is 20 characters.

public string GroupId { get; set; }

Property Value

string

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

string

InclVat

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

public decimal InclVat { get; set; }

Property Value

decimal

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

decimal

Vat

Absolute tax amount. InclVat - ExclVat = Vat. A precision of 2 decimal places is used.

public decimal Vat { get; set; }

Property Value

decimal