TableRowModel

@Serializable
data class TableRowModel(val rowHeaders: List<RowHeader>, val values: Map<Int, TableCell>, val maxLines: Int = 3)

Data class representing a row in a table.

Constructors

Link copied to clipboard
constructor(rowHeaders: List<RowHeader>, values: Map<Int, TableCell>, maxLines: Int = 3)

Properties

Link copied to clipboard
val maxLines: Int = 3

The maximum number of lines to display in the cell.

Link copied to clipboard

The header of the row.

Link copied to clipboard

The values of the row.

Functions

Link copied to clipboard
fun id(): String
Link copied to clipboard
fun row(): Int