Table of Contents

Class AdditionalTax

Namespace
RetailForce.Fiscalisation.Model.Document
Assembly
RetailForce.Fiscalisation.Model.dll

Possible additional tax for a vat position (for alcohol or other additional taxes).

[Serializable]
public class AdditionalTax
Inheritance
AdditionalTax
Inherited Members

Properties

AdditionalTaxType

The type of the additional tax. If type = Other you have to set AdditionalTaxTypeInformation.

[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public AdditionalTaxType? AdditionalTaxType { get; set; }

Property Value

AdditionalTaxType?

AdditionalTaxTypeIdentification

Type information if type is not one of AdditionalTaxType.

[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public string AdditionalTaxTypeIdentification { get; set; }

Property Value

string

TaxPercent

The percentage of the additional tax.

[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public decimal? TaxPercent { get; set; }

Property Value

decimal?

TaxValue

The value of the additional tax.

[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public decimal? TaxValue { get; set; }

Property Value

decimal?