Release represents a repository release
| Name | Type | Description | Notes |
|---|---|---|---|
| archive_download_count | TagArchiveDownloadCount | [optional] | |
| assets | List[Attachment] | [optional] | |
| author | User | [optional] | |
| body | str | [optional] | |
| created_at | datetime | [optional] | |
| draft | bool | [optional] | |
| hide_archive_links | bool | [optional] | |
| html_url | str | [optional] | |
| id | int | [optional] | |
| name | str | [optional] | |
| prerelease | bool | [optional] | |
| published_at | datetime | [optional] | |
| tag_name | str | [optional] | |
| tarball_url | str | [optional] | |
| target_commitish | str | [optional] | |
| upload_url | str | [optional] | |
| url | str | [optional] | |
| zipball_url | str | [optional] |
from clientapi_forgejo.models.release import Release
# TODO update the JSON string below
json = "{}"
# create an instance of Release from a JSON string
release_instance = Release.from_json(json)
# print the JSON string representation of the object
print(Release.to_json())
# convert the object into a dict
release_dict = release_instance.to_dict()
# create an instance of Release from a dict
release_from_dict = Release.from_dict(release_dict)