Label

@Serializable
data class Label(val lang: String? = null, val value: String? = null, val type: String? = null)

A localizable string value to show study participants.

Parameters

lang

A valid ISO 639 alpha-2 or alpha-3 language code specifying the language of the label.

value

The text of the label.

type

Label

Constructors

Link copied to clipboard
constructor(lang: String? = null, value: String? = null, type: String? = null)

Properties

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