EntityDataValue

data class EntityDataValue(val booleanValue: Boolean? = null, val doubleValue: Double? = null, val expression: String? = null, val integerValue: Int? = null, val listValue: List<EntityDataValue>? = null, val longValue: Double? = null, val mapValue: Map<String, EntityDataValue>? = null, val relationshipValue: EntityDataValueRelationshipValueProperties? = null, val stringValue: String? = null)

An object that specifies a value for a property.

Constructors

Link copied to clipboard
constructor(booleanValue: Boolean? = null, doubleValue: Double? = null, expression: String? = null, integerValue: Int? = null, listValue: List<EntityDataValue>? = null, longValue: Double? = null, mapValue: Map<String, EntityDataValue>? = null, relationshipValue: EntityDataValueRelationshipValueProperties? = null, stringValue: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val booleanValue: Boolean? = null

A Boolean value.

Link copied to clipboard
val doubleValue: Double? = null

A double value.

Link copied to clipboard
val expression: String? = null

An expression that produces the value.

Link copied to clipboard
val integerValue: Int? = null

An integer value.

Link copied to clipboard

A list of multiple values.

Link copied to clipboard
val longValue: Double? = null

A long value.

Link copied to clipboard

An object that maps strings to multiple DataValue objects.

Link copied to clipboard

A value that relates a component to another component.

Link copied to clipboard
val stringValue: String? = null

A string value.