| Name | Type | Description | Notes |
|---|---|---|---|
| updated_at | datetime | When this version was written. Absent on a version that predates the recorded history. | [optional] |
| updated_by | HistoryActor | Who wrote this version. Absent on a version that predates the recorded history. | [optional] |
| value | DataTypeEntry | The type as it stood in this version. |
fromrevengai.models.data_type_versionimportDataTypeVersion# TODO update the JSON string belowjson="{}"# create an instance of DataTypeVersion from a JSON stringdata_type_version_instance=DataTypeVersion.from_json(json)
# print the JSON string representation of the objectprint(DataTypeVersion.to_json())
# convert the object into a dictdata_type_version_dict=data_type_version_instance.to_dict()
# create an instance of DataTypeVersion from a dictdata_type_version_from_dict=DataTypeVersion.from_dict(data_type_version_dict)