ApplicationParameter.Bool

API: Internal/Beta

An input parameter which accepts any boolean value

data class Bool(
    val name: String?,
    val optional: Boolean?,
    val defaultValue: Any?,
    val title: String?,
    val description: String?,
    val trueValue: String?,
    val falseValue: String?,
    val type: String /* "boolean" */,
)

Compatible with: AppParameterValue.Bool

Properties
name: String?
optional: Boolean?
defaultValue: Any?
title: String?
description: String?
trueValue: String?
falseValue: String?
type: String /* "boolean" */ The type discriminator

API: Stable