Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.07 KB

File metadata and controls

36 lines (27 loc) · 1.07 KB

Tag

Tag represents a repository tag

Properties

Name Type Description Notes
archive_download_count TagArchiveDownloadCount [optional]
commit CommitMeta [optional]
id str [optional]
message str [optional]
name str [optional]
tarball_url str [optional]
zipball_url str [optional]

Example

from clientapi_forgejo.models.tag import Tag

# TODO update the JSON string below
json = "{}"
# create an instance of Tag from a JSON string
tag_instance = Tag.from_json(json)
# print the JSON string representation of the object
print(Tag.to_json())

# convert the object into a dict
tag_dict = tag_instance.to_dict()
# create an instance of Tag from a dict
tag_from_dict = Tag.from_dict(tag_dict)

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