dk.sdu.cloud.app.store.api.ApplicationParameter.Enumeration

UCloud Developer Guide / Orchestration of Resources / Compute / Application Store / Applications

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)

Properties

Last updated