ReceiptItem
public class ReceiptItem : CustomStringConvertible
Contains the value of a specific receipt item to be used by the ECR to create receipts. Immutable class.
-
Create receipt item.
Declaration
Swift
public init(receiptItemType: CReceiptItemType, recipient: CRecipient, value: String) -
Type of receipt item.
Declaration
Swift
public private(set) var receiptItemType: CReceiptItemType -
Recipient.
Declaration
Swift
public private(set) var recipient: CRecipient -
Value of the receipt item.
Declaration
Swift
public private(set) var value: String -
Textual representation.
Declaration
Swift
public var description: String { get }
ReceiptItem Class Reference