Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 873 Bytes

Version.md

File metadata and controls

31 lines (22 loc) · 873 Bytes

Version

Properties

Name Type Description Notes
version str [optional]
release str [optional]
update_stamp str [optional]

Example

from dofusdude.models.version import Version

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

# convert the object into a dict
version_dict = version_instance.to_dict()
# create an instance of Version from a dict
version_from_dict = Version.from_dict(version_dict)

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