PropertyLocalDateTime

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

Property implementation for LocalDateTime values.

Constructors

Link copied to clipboard
constructor(name: String, value: LocalDateTime, description: String? = null, fixedValues: Set<LocalDateTime> = 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<LocalDateTime>

Set of allowed local date time 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: LocalDateTime

Current local date time value