Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

QuotaUsedSize.md

File metadata and controls

32 lines (23 loc) · 1.11 KB

QuotaUsedSize

QuotaUsedSize represents the size-based quota usage of a user

Properties

Name Type Description Notes
assets QuotaUsedSizeAssets [optional]
git QuotaUsedSizeGit [optional]
repos QuotaUsedSizeRepos [optional]

Example

from clientapi_forgejo.models.quota_used_size import QuotaUsedSize

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

# convert the object into a dict
quota_used_size_dict = quota_used_size_instance.to_dict()
# create an instance of QuotaUsedSize from a dict
quota_used_size_from_dict = QuotaUsedSize.from_dict(quota_used_size_dict)

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