SliderConfig

@Serializable
@SerialName(value = "slider")
data class SliderConfig(val id: String, val label: String, val description: String? = null, val min: Int? = null, val max: Int? = null, val step: Int? = null, val defaultValue: JsonElement? = null, val labels: List<String>? = null, val disabled: Boolean? = null, val info: JsonElement? = null) : SettingConfig

Constructors

Link copied to clipboard
constructor(id: String, label: String, description: String? = null, min: Int? = null, max: Int? = null, step: Int? = null, defaultValue: JsonElement? = null, labels: List<String>? = null, disabled: Boolean? = null, info: JsonElement? = null)

Properties

Link copied to clipboard
open override val defaultValue: JsonElement? = null
Link copied to clipboard
open override val description: String? = null
Link copied to clipboard
open override val disabled: Boolean? = null
Link copied to clipboard
open override val id: String
Link copied to clipboard
open override val info: JsonElement? = null
Link copied to clipboard
open override val label: String
Link copied to clipboard
val labels: List<String>? = null
Link copied to clipboard
val max: Int? = null
Link copied to clipboard
val min: Int? = null
Link copied to clipboard
val step: Int? = null