Entity Data Type
data class EntityDataType(val allowedValues: List<EntityDataValue>? = null, val nestedType: EntityDataType? = null, val relationship: EntityRelationship? = null, val type: EntityDataTypeType? = null, val unitOfMeasure: String? = null)
An object that specifies the data type of a property.
Constructors
Link copied to clipboard
constructor(allowedValues: List<EntityDataValue>? = null, nestedType: EntityDataType? = null, relationship: EntityRelationship? = null, type: EntityDataTypeType? = null, unitOfMeasure: String? = null)
Properties
Link copied to clipboard
The allowed values for this data type.
Link copied to clipboard
The nested type in the data type.
Link copied to clipboard
A relationship that associates a component with another component.
Link copied to clipboard
The underlying type of the data type.
Link copied to clipboard
The unit of measure used in this data type.