ApplicationParameter.Enumeration

API: Internal/Beta

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)

Properties
name: String?
optional: Boolean?
defaultValue: Any?
title: String?
description: String?
options: List<ApplicationParameter.EnumOption>?
type: String /* "enumeration" */ The type discriminator

API: Stable