Name | Type | Description | Notes |
---|---|---|---|
sha | str | [optional] | |
type | str | [optional] | |
url | str | [optional] |
from clientapi_forgejo.models.git_object import GitObject
# TODO update the JSON string below
json = "{}"
# create an instance of GitObject from a JSON string
git_object_instance = GitObject.from_json(json)
# print the JSON string representation of the object
print(GitObject.to_json())
# convert the object into a dict
git_object_dict = git_object_instance.to_dict()
# create an instance of GitObject from a dict
git_object_from_dict = GitObject.from_dict(git_object_dict)