Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

DataTypeVersion

Properties

NameTypeDescriptionNotes
updated_atdatetimeWhen this version was written. Absent on a version that predates the recorded history.[optional]
updated_byHistoryActorWho wrote this version. Absent on a version that predates the recorded history.[optional]
valueDataTypeEntryThe type as it stood in this version.

Example

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)

[Back to Model list][Back to API list][Back to README]