Receipt Line
abstract class ReceiptLine(val type: LineType, val text: String?, val additionalText: String?, val sequenceNumber: Int) : Parcelable
Abstract class used as base for possible lines in a bill model. (Default, TextOnly, Discount)
Inheritors
Properties
Link copied to clipboard
Nullable String with additional text
Link copied to clipboard
Int The sequence number of the line item. Used to display the correct order.
Link copied to clipboard
LineType value defining the type of a line item. E.g. DefaultLine, TextLine, DiscountLine