Class Data
Bill data.
Inheritance
System.Object
Data
Namespace: anybill.POS.Client.Models.Bill.Data
Assembly: anybill.POS.Client.Abstractions.dll
Syntax
public class Data
Properties
Currency
This field defines the currency to be used for all document data if no other currency is explicitly specified. Must be a valid ISO 4217 currency code (alphabetical code).
Declaration
public string Currency { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Extension
Anybill specific extensions.
Declaration
public AnybillDataExtension Extension { get; set; }
Property Value
Type | Description |
---|---|
AnybillDataExtension |
FullAmountInclVat
The total gross amount of the receipt. A precision of 2 decimal places is used.
Declaration
public decimal FullAmountInclVat { get; set; }
Property Value
Type | Description |
---|---|
System.Decimal |
Lines
List of individual line items of the services / items provided.
Declaration
public List<LineBase> Lines { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<LineBase> |
PaymentTypes
List of all payment methods used to pay this receipt.
Declaration
public List<PaymentTypeInformation> PaymentTypes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<PaymentTypeInformation> |
VatAmounts
Total amounts per tax rate - this corresponds to the amounts just as they are shown on the printed receipt. Must be unique by the percentage.
Declaration
public List<DataVatAmount> VatAmounts { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DataVatAmount> |