BooleanPropertyDefinition
data class BooleanPropertyDefinition(val type: List<String> = listOf("boolean"), val description: String? = null, val nullable: Boolean? = null, val default: JsonElement? = null, val constValue: JsonElement? = null) : ValuePropertyDefinition(source)
Represents a boolean property
Constructors
Link copied to clipboard
constructor(type: List<String> = listOf("boolean"), description: String? = null, nullable: Boolean? = null, default: JsonElement? = null, constValue: JsonElement? = null)