ReceiptItems
public class ReceiptItems : CustomStringConvertible
Contains a list of ReceiptItem to be used for a specific type of receipts. Immutable class.
-
Create receipt item list.
Declaration
Swift
public init(receiptType: CReceiptType, receiptItem: [ReceiptItem]) -
Type of the receipt.
Declaration
Swift
public private(set) var receiptType: CReceiptType { get } -
List of receipt items to be used for this receipt type.
Declaration
Swift
public var receiptItem: [ReceiptItem] -
Textual representation.
Declaration
Swift
public var description: String { get }