Table

@JsonClass(generateAdapter = true)
data class Table(    val _id: String?,     val subtype: String?,     val channels: List<String>?,     val additional_properties: Map<String, *>?,     val header: List<Text>?,     val rows: List<List<Text>>?) : StoryElement

Table story element data class

Constructors

Link copied to clipboard
fun Table(    _id: String?,     subtype: String?,     channels: List<String>?,     additional_properties: Map<String, *>?,     header: List<Text>?,     rows: List<List<Text>>?)

Properties

Link copied to clipboard
val _id: String?

Globally Unique ID trait: A globally unique identifier of the content in the ANS repository.

Link copied to clipboard
val additional_properties: Map<String, *>?

A grab-bag object for non-validatable data.

Link copied to clipboard
val channels: List<String>?

Channel trait: An optional list of output types for which this element should be visible

Link copied to clipboard
val header: List<Text>?

The header row of the table

Link copied to clipboard
val rows: List<List<Text>>?

The data rows of the table

Link copied to clipboard
val subtype: String?

A user-defined categorization method to supplement type. In Arc, this field is reserved for organization-defined purposes, such as selecting the PageBuilder template that should be used to render a document.

Link copied to clipboard
val type: String