Table of Contents

Class DefaultLine

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

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

string

DeliveryPeriodEnd

End of the service period if different from date of invoice. Needed if 'DeliveryPeriodStart' is set.

public string DeliveryPeriodEnd { get; set; }

Property Value

string

DeliveryPeriodStart

Start of the service period if different from date of invoice. Needed if 'DeliveryPeriodEnd' is set.

public string DeliveryPeriodStart { get; set; }

Property Value

string

Extension

Anybill specific extensions.

public AnybillDefaultLineExtension Extension { get; set; }

Property Value

AnybillDefaultLineExtension

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

decimal

Item

Detailed description of the this line item.

public Item Item { get; set; }

Property Value

Item

Text

Describes the type of item / product or service provided.

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 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; }

Property Value

List<LineVatAmount>