Table of Contents

Class DiscountLine

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

Discount line. Represents a discount not explicitly bound to a specific line.

public class DiscountLine : TextLineBase
Inheritance
DiscountLine
Inherited Members

Constructors

DiscountLine()

public DiscountLine()

Properties

AdditionalText

Additional information about the discount.

public override string AdditionalText { get; set; }

Property Value

string

Extension

Anybill specific extensions.

public AnybillDiscountLineExtension Extension { get; set; }

Property Value

AnybillDiscountLineExtension

FullAmountInclVat

The total gross total amount of this discount line. A precision of up to 5 decimal places is used.

public decimal? FullAmountInclVat { get; set; }

Property Value

decimal?

RelatedLines

Reference to related lines by the 'SequenceNumber'.

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

Property Value

List<int>

Text

Name of the discount.

public override string Text { get; set; }

Property Value

string

VatAmounts

The invoice amounts for this line item divided according to tax rates. Different tax rates may be applied, e.g. if the discount is applied to multiple lines with different tax rates.

public List<DiscountLineVatAmount> VatAmounts { get; set; }

Property Value

List<DiscountLineVatAmount>