Class DiscountLine
- 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
Extension
Anybill specific extensions.
public AnybillDiscountLineExtension Extension { get; set; }
Property Value
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
RelatedLines
Reference to related lines by the 'SequenceNumber'.
public List<int> RelatedLines { get; set; }
Property Value
Text
Name of the discount.
public override string Text { get; set; }
Property Value
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; }