ServerVersion wraps the version of the server
Name | Type | Description | Notes |
---|---|---|---|
version | str | [optional] |
from clientapi_forgejo.models.server_version import ServerVersion
# TODO update the JSON string below
json = "{}"
# create an instance of ServerVersion from a JSON string
server_version_instance = ServerVersion.from_json(json)
# print the JSON string representation of the object
print(ServerVersion.to_json())
# convert the object into a dict
server_version_dict = server_version_instance.to_dict()
# create an instance of ServerVersion from a dict
server_version_from_dict = ServerVersion.from_dict(server_version_dict)