Items

@ObjCName(name = "TeyaReceiptRowItems", exact = true)
data class Items(val items: List<RowElement>) : ReceiptRow

Represents a collection of RowElements within a receipt row.

This class is a subtype of ReceiptRow and is used to define a grouping of multiple elements, such as text, images, or QR codes. These elements are rendered together as part of the same receipt row.

Constructors

Link copied to clipboard
constructor(items: List<RowElement>)

Properties

Link copied to clipboard

A list of RowElements that make up the row. Each element in the list can be of type RowElement.Text, RowElement.Image, or RowElement.QrCode.