Class DefaultLine
Default line of an item / product or service provided.
public class DefaultLine : TextLineBase
- Inheritance
-
DefaultLine
- Inherited Members
Properties
AdditionalText
Additional information on the item / product or service provided, that is more than the the legal requirement and may be of interest. E.g.the serial number of an item sold, or details about the service provided.
public override string AdditionalText { get; set; }
Property Value
DeliveryPeriodEnd
End of the service period if different from date of invoice. Needed if 'DeliveryPeriodStart' is set.
public string DeliveryPeriodEnd { get; set; }
Property Value
DeliveryPeriodStart
Start of the service period if different from date of invoice. Needed if 'DeliveryPeriodEnd' is set.
public string DeliveryPeriodStart { get; set; }
Property Value
Extension
Anybill specific extensions.
public AnybillDefaultLineExtension Extension { get; set; }
Property Value
FullAmountInclVat
The total gross total amount of this line. A precision of up to 5 decimal places is used.
public decimal FullAmountInclVat { get; set; }
Property Value
Item
Detailed description of the this line item.
public Item Item { get; set; }
Property Value
Text
Describes the type of item / product or service provided.
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 a compilation of products (menu) from meals and drinks and is sold "outside the home". Must be unique by the percentage.
public List<LineVatAmount> VatAmounts { get; set; }