Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 934 Bytes

File metadata and controls

29 lines (20 loc) · 934 Bytes

RestoreVersionData

Properties

Name Type Description Notes
version str

Example

from docspring.models.restore_version_data import RestoreVersionData

# TODO update the JSON string below
json = "{}"
# create an instance of RestoreVersionData from a JSON string
restore_version_data_instance = RestoreVersionData.from_json(json)
# print the JSON string representation of the object
print(RestoreVersionData.to_json())

# convert the object into a dict
restore_version_data_dict = restore_version_data_instance.to_dict()
# create an instance of RestoreVersionData from a dict
restore_version_data_from_dict = RestoreVersionData.from_dict(restore_version_data_dict)

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