Entity Data Value
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)
Properties
Link copied to clipboard
A Boolean value.
Link copied to clipboard
A double value.
Link copied to clipboard
An expression that produces the value.
Link copied to clipboard
An integer value.
Link copied to clipboard
A list of multiple values.
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
A string value.