Class AnybillMiscExtension
Anybill extensions to the misc object of the version '1.0.0' of the DFKA.
Inheritance
System.Object
AnybillMiscExtension
Namespace: anybill.POS.Client.Models.Bill.Misc.Extension
Assembly: anybill.POS.Client.Abstractions.dll
Syntax
public class AnybillMiscExtension
Properties
AfterSalesCoupons
List of after sales coupon the receipt recipient should get.
Declaration
public List<AfterSalesCoupon> AfterSalesCoupons { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<AfterSalesCoupon> |
CashierName
Name of the cashier who processed the transaction.
Declaration
public string CashierName { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Categories
List of categories to categorize this receipt for the user. Unknown categories will be ignored.
Declaration
public List<Guid> Categories { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<System.Guid> |
CustomSections
Define custom sections between already existing sections.
Declaration
public List<CustomSection> CustomSections { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<CustomSection> |
IsExample
Mark bill as an example bill.
Declaration
public bool IsExample { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
IsHospitalityBill
Mark bill as a hospitality bill.
Declaration
public bool? IsHospitalityBill { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
IsInvoice
Mark bill as an invoice. Used with PDF export to create an invoice instead of a receipt.
Declaration
public bool? IsInvoice { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Boolean> |
ReturnBarcode
Data to display a return barcode.
Declaration
public string ReturnBarcode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ReturnBarcodeType
The type of the return barcode. Must be set if 'ReturnBarcode' is set.
Declaration
public ReturnBarcodeType? ReturnBarcodeType { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<ReturnBarcodeType> |