Entity Data Value Args
data class EntityDataValueArgs(val booleanValue: Output<Boolean>? = null, val doubleValue: Output<Double>? = null, val expression: Output<String>? = null, val integerValue: Output<Int>? = null, val listValue: Output<List<EntityDataValueArgs>>? = null, val longValue: Output<Double>? = null, val mapValue: Output<Map<String, EntityDataValueArgs>>? = null, val relationshipValue: Output<EntityDataValueRelationshipValuePropertiesArgs>? = null, val stringValue: Output<String>? = null) : ConvertibleToJava<EntityDataValueArgs>
An object that specifies a value for a property.
Constructors
Link copied to clipboard
constructor(booleanValue: Output<Boolean>? = null, doubleValue: Output<Double>? = null, expression: Output<String>? = null, integerValue: Output<Int>? = null, listValue: Output<List<EntityDataValueArgs>>? = null, longValue: Output<Double>? = null, mapValue: Output<Map<String, EntityDataValueArgs>>? = null, relationshipValue: Output<EntityDataValueRelationshipValuePropertiesArgs>? = null, stringValue: Output<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.