AnnotatedTag represents an annotated tag
Name | Type | Description | Notes |
---|---|---|---|
archive_download_count | TagArchiveDownloadCount | [optional] | |
message | str | [optional] | |
object | AnnotatedTagObject | [optional] | |
sha | str | [optional] | |
tag | str | [optional] | |
tagger | CommitUser | [optional] | |
url | str | [optional] | |
verification | PayloadCommitVerification | [optional] |
from clientapi_forgejo.models.annotated_tag import AnnotatedTag
# TODO update the JSON string below
json = "{}"
# create an instance of AnnotatedTag from a JSON string
annotated_tag_instance = AnnotatedTag.from_json(json)
# print the JSON string representation of the object
print(AnnotatedTag.to_json())
# convert the object into a dict
annotated_tag_dict = annotated_tag_instance.to_dict()
# create an instance of AnnotatedTag from a dict
annotated_tag_from_dict = AnnotatedTag.from_dict(annotated_tag_dict)