Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

QuotaUsedSizeRepos.md

File metadata and controls

31 lines (22 loc) · 1.15 KB

QuotaUsedSizeRepos

QuotaUsedSizeRepos represents the size-based repository quota usage of a user

Properties

Name Type Description Notes
private int Storage size of the user's private repositories [optional]
public int Storage size of the user's public repositories [optional]

Example

from clientapi_forgejo.models.quota_used_size_repos import QuotaUsedSizeRepos

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

# convert the object into a dict
quota_used_size_repos_dict = quota_used_size_repos_instance.to_dict()
# create an instance of QuotaUsedSizeRepos from a dict
quota_used_size_repos_from_dict = QuotaUsedSizeRepos.from_dict(quota_used_size_repos_dict)

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