AppParameterValue.Bool

API: Experimental/Alpha

A boolean value (true or false)

data class Bool(
    val value: Boolean,
    val type: String /* "boolean" */,
)
  • Compatible with: ApplicationParameter.Bool

  • Mountable as a resource: ❌ No

  • Expands to: trueValue of ApplicationParameter.Bool if value is true otherwise falseValue

  • Side effects: None

Properties
value: Boolean
type: String /* "boolean" */ The type discriminator

API: Stable