PropertyLong

@Serializable
@SerialName(value = "long")
data class PropertyLong(val name: String, val value: Long, val description: String? = null, val fixedValues: Set<Long> = emptySet(), val readOnly: Boolean = false) : Property<Long> (source)

Property implementation for Long values.

Constructors

Link copied to clipboard
constructor(name: String, value: Long, description: String? = null, fixedValues: Set<Long> = emptySet(), readOnly: Boolean = false)

Properties

Link copied to clipboard
open override val description: String?

Optional description

Link copied to clipboard
open override val fixedValues: Set<Long>

Set of allowed long values (empty if no restrictions)

Link copied to clipboard

Checks if this property has fixed values defined.

Link copied to clipboard
open override val name: String

Unique name of the property

Link copied to clipboard
open override val readOnly: Boolean

Whether the property is read-only

Link copied to clipboard
open override val value: Long

Current long value