Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

TagArchiveDownloadCount.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

TagArchiveDownloadCount

TagArchiveDownloadCount counts how many times a archive was downloaded

Properties

Name Type Description Notes
tar_gz int [optional]
zip int [optional]

Example

from clientapi_forgejo.models.tag_archive_download_count import TagArchiveDownloadCount

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

# convert the object into a dict
tag_archive_download_count_dict = tag_archive_download_count_instance.to_dict()
# create an instance of TagArchiveDownloadCount from a dict
tag_archive_download_count_from_dict = TagArchiveDownloadCount.from_dict(tag_archive_download_count_dict)

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