Table of Contents

Class BasicAdditionalReceipt

Namespace
anybill.POS.Client.Models.Receipt.Misc.AdditionalReceipt
Assembly
anybill.POS.Client.Abstractions.dll

Basic additional receipt.

public class BasicAdditionalReceipt : AdditionalReceipt
Inheritance
BasicAdditionalReceipt
Inherited Members

Constructors

BasicAdditionalReceipt()

public BasicAdditionalReceipt()

Properties

IsPrimaryReceipt

Indicating that the provided receipt should be used as primary receipt. A primary receipt will be used as main PDF when a user downloads the receipt PDF. Primary receipts need to be of ContentType 'application/pdf'.

public bool IsPrimaryReceipt { get; set; }

Property Value

bool

IsPrintBuffer

Indicates that the content will be sent as PrintBuffer and must be processed in a different way when generating the PDF. Print buffer receipts need to be of ContentType 'text/plain' Base64 Encoded and IsPrimaryReceipt = 'true.

public bool IsPrintBuffer { get; set; }

Property Value

bool