Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.33 KB

AnnotatedTag.md

File metadata and controls

37 lines (28 loc) · 1.33 KB

AnnotatedTag

AnnotatedTag represents an annotated tag

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]