Label

@JsonClass(generateAdapter = true)
data class Label(    val text: String?,     val url: String?,     val display: Boolean?,     val additional_properties: Map<String, *>?)

The default label object for this piece of content.

Constructors

Link copied to clipboard
fun Label(    text: String?,     url: String?,     display: Boolean?,     additional_properties: Map<String, *>?)

Properties

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

A grab-bag object for non-validatable data.

Link copied to clipboard
val display: Boolean?

If false, this label should be hidden.

Link copied to clipboard
val text: String?

The text of this label.

Link copied to clipboard
val url: String?

An optional destination url of this label.