Field

data class Field(val value: String? = null, val type: String? = null, val tags: Array<TagName>? = null, val description: String? = null)

Represents a field.

Constructors

Link copied to clipboard
constructor(value: String? = null, type: String? = null, tags: Array<TagName>? = null, description: String? = null)

Properties

Link copied to clipboard
val description: String? = null

The description of the field (optional).

Link copied to clipboard
val tags: Array<TagName>? = null

The array of tags associated with the field (optional).

Link copied to clipboard
val type: String? = null

The type of the field (optional).

Link copied to clipboard
val value: String? = null

The value of the field (optional).