ColumnResponse

data class ColumnResponse(val weight: String, val widgets: List<WidgetResponse>)

Defines the layout properties and content for a column.

Constructors

Link copied to clipboard
constructor(weight: String, widgets: List<WidgetResponse>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The relative weight of this column. The column weight is used to adjust the width of columns on the screen (relative to peers). Greater the weight, greater the width of the column on the screen. If omitted, a value of 1 is used while rendering.

Link copied to clipboard

The display widgets arranged vertically in this column.