AppParameterValue.Text

API: Experimental/Alpha

A textual value

data class Text(
    val value: String,
    val type: String /* "text" */,
)
  • Compatible with: ApplicationParameter.Text and ApplicationParameter.Enumeration

  • Mountable as a resource: ❌ No

  • Expands to: The text, when used in an invocation this will be passed as a single argument.

  • Side effects: None

When this is used with an Enumeration it must match the value of one of the associated options.

Properties
value: String
type: String /* "text" */ The type discriminator

API: Stable