Class Data
Receipt data.
public class Data
- Inheritance
-
Data
- Inherited Members
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).
public string Currency { get; set; }
Property Value
Extension
Anybill specific extensions.
public AnybillDataExtension Extension { get; set; }
Property Value
FullAmountInclVat
The total gross amount of the receipt. A precision of 2 decimal places is used.
public decimal FullAmountInclVat { get; set; }
Property Value
Lines
List of individual line items of the services / items provided.
public List<LineBase> Lines { get; set; }
Property Value
PaymentTypes
List of all payment methods used to pay this receipt.
public List<PaymentTypeInformation> PaymentTypes { get; set; }
Property Value
PositionCount
The count of positions in the receipt.
public int? PositionCount { get; set; }
Property Value
- int?
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.
public List<DataVatAmount> VatAmounts { get; set; }