Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.18 KB

QuotaUsedSizeAssetsPackages.md

File metadata and controls

30 lines (21 loc) · 1.18 KB

QuotaUsedSizeAssetsPackages

QuotaUsedSizeAssetsPackages represents the size-based package quota usage of a user

Properties

Name Type Description Notes
all int Storage suze used for the user's packages [optional]

Example

from clientapi_forgejo.models.quota_used_size_assets_packages import QuotaUsedSizeAssetsPackages

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

# convert the object into a dict
quota_used_size_assets_packages_dict = quota_used_size_assets_packages_instance.to_dict()
# create an instance of QuotaUsedSizeAssetsPackages from a dict
quota_used_size_assets_packages_from_dict = QuotaUsedSizeAssetsPackages.from_dict(quota_used_size_assets_packages_dict)

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