ChoiceListValue

@JsonClass(generateAdapter = true)
data class ChoiceListValue(val order: Int, val choiceListValueName: String, val choiceListValueId: String, val isDefaultValue: Boolean, val label: String)

A single value in a ChoiceList with instructions for how it should be displayed.

Parameters

order

The order that the field should be displayed in the choice list.

choiceListValueName

The name of the field.

choiceListValueId

The identifier for the field.

isDefaultValue

Determines whether a field should be the default selected value.

label

The label to display.

Constructors

Link copied to clipboard
constructor(order: Int, choiceListValueName: String, choiceListValueId: String, isDefaultValue: Boolean, label: String)

Properties

Link copied to clipboard
val choiceListValueId: String
Link copied to clipboard
Link copied to clipboard
val isDefaultValue: Boolean
Link copied to clipboard
val label: String
Link copied to clipboard
val order: Int

Functions

Link copied to clipboard
open override fun toString(): String

Converts this object to a string.