GitBlobResponse represents a git blob
Name | Type | Description | Notes |
---|---|---|---|
content | str | [optional] | |
encoding | str | [optional] | |
sha | str | [optional] | |
size | int | [optional] | |
url | str | [optional] |
from clientapi_forgejo.models.git_blob_response import GitBlobResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GitBlobResponse from a JSON string
git_blob_response_instance = GitBlobResponse.from_json(json)
# print the JSON string representation of the object
print(GitBlobResponse.to_json())
# convert the object into a dict
git_blob_response_dict = git_blob_response_instance.to_dict()
# create an instance of GitBlobResponse from a dict
git_blob_response_from_dict = GitBlobResponse.from_dict(git_blob_response_dict)