Name | Type | Description | Notes |
---|---|---|---|
version | str | [optional] | |
release | str | [optional] | |
update_stamp | str | [optional] |
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)