TypeDisplay

@Serializable
data class TypeDisplay(val language: String, val name: String, val description: String? = null, val rendering: Rendering? = null)(source)

Constructors

Link copied to clipboard
constructor(language: String, name: String, description: String? = null, rendering: Rendering? = null)

Properties

Link copied to clipboard
@SerialName(value = "description")
val description: String? = null

OPTIONAL. A human-readable description for the type, intended for end users.

Link copied to clipboard
@SerialName(value = "lang")
val language: String

REQUIRED. A language tag as defined in Section 2 of RFC5646.

Link copied to clipboard
@SerialName(value = "name")
val name: String

REQUIRED. A human-readable name for the type, intended for end users.

Link copied to clipboard
@SerialName(value = "rendering")
val rendering: Rendering? = null

OPTIONAL. An object containing rendering information for the type