Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

QuotaUsedSizeAssets.md

File metadata and controls

32 lines (23 loc) · 1.26 KB

QuotaUsedSizeAssets

QuotaUsedSizeAssets represents the size-based asset usage of a user

Properties

Name Type Description Notes
artifacts int Storage size used for the user's artifacts [optional]
attachments QuotaUsedSizeAssetsAttachments [optional]
packages QuotaUsedSizeAssetsPackages [optional]

Example

from clientapi_forgejo.models.quota_used_size_assets import QuotaUsedSizeAssets

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

# convert the object into a dict
quota_used_size_assets_dict = quota_used_size_assets_instance.to_dict()
# create an instance of QuotaUsedSizeAssets from a dict
quota_used_size_assets_from_dict = QuotaUsedSizeAssets.from_dict(quota_used_size_assets_dict)

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