Table of Contents

Class Data

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

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

string

Extension

Anybill specific extensions.

public AnybillDataExtension Extension { get; set; }

Property Value

AnybillDataExtension

FullAmountInclVat

The total gross amount of the receipt. A precision of 2 decimal places is used.

public decimal FullAmountInclVat { get; set; }

Property Value

decimal

Lines

List of individual line items of the services / items provided.

public List<LineBase> Lines { get; set; }

Property Value

List<LineBase>

PaymentTypes

List of all payment methods used to pay this receipt.

public List<PaymentTypeInformation> PaymentTypes { get; set; }

Property Value

List<PaymentTypeInformation>

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

Property Value

List<DataVatAmount>