Class Head
Head data of the bill.
Inheritance
Namespace: anybill.POS.Client.Models.Bill.Head
Assembly: anybill.POS.Client.Abstractions.dll
Syntax
public class Head
Properties
Buyer
Structured name and address of the receipt recipient / buyer. If data is not available in structured form 'BuyerText'-property should be used.
Declaration
public Buyer Buyer { get; set; }
Property Value
Type | Description |
---|---|
Buyer |
BuyerText
Name and address of the receipt recipient / buyer in simple text form. Should only be used if the data is not in a structured form. Otherwise the 'BuyerText'-property should be used.
Declaration
public string BuyerText { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Date
Date of invoice.
Declaration
public DateTimeOffset Date { get; set; }
Property Value
Type | Description |
---|---|
System.DateTimeOffset |
DeliveryPeriodEnd
End of the delivery period, if different from date of invoice. Needed if 'DeliveryPeriodStart' is set.
Declaration
public string DeliveryPeriodEnd { get; set; }
Property Value
Type | Description |
---|---|
System.String |
DeliveryPeriodStart
Start of the delivery period, if different from date of invoice. Needed if 'DeliveryPeriodEnd' is set.
Declaration
public string DeliveryPeriodStart { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Extension
Anybill specific extensions.
Declaration
public AnybillHeadExtension Extension { get; set; }
Property Value
Type | Description |
---|---|
AnybillHeadExtension |
Id
The bill id used to reference the issued by the POS system that created the bill.
Declaration
public string Id { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Number
(Consecutive) invoice number.
Declaration
public string Number { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Seller
Information on the document issuer / providing company. Optionally overrides the information in the anybill system.
Declaration
public Seller Seller { get; set; }
Property Value
Type | Description |
---|---|
Seller |