| Name |
Type |
Description |
Notes |
| version |
str |
|
|
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]