DeviceAttribute

data class DeviceAttribute(val bool: Boolean? = null, val int: Int? = null, val string: String? = null, val version: String? = null)

DeviceAttribute must have exactly one field set.

Constructors

Link copied to clipboard
constructor(bool: Boolean? = null, int: Int? = null, string: String? = null, version: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val bool: Boolean? = null

BoolValue is a true/false value.

Link copied to clipboard
val int: Int? = null

IntValue is a number.

Link copied to clipboard
val string: String? = null

StringValue is a string. Must not be longer than 64 characters.

Link copied to clipboard
val version: String? = null

VersionValue is a semantic version according to semver.org spec 2.0.0. Must not be longer than 64 characters.