ApplicationParameter.Enumeration¶
An input parameter which accepts an enum
data class Enumeration(
val name: String?,
val optional: Boolean?,
val defaultValue: Any?,
val title: String?,
val description: String?,
val options: List<ApplicationParameter.EnumOption>?,
val type: String /* "enumeration" */,
)
Compatible with: AppParameterValue.Text (Note: the text should match the value of the selected
option)