Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.34 KB

QuotaUsedSizeAssetsAttachments.md

File metadata and controls

31 lines (22 loc) · 1.34 KB

QuotaUsedSizeAssetsAttachments

QuotaUsedSizeAssetsAttachments represents the size-based attachment quota usage of a user

Properties

Name Type Description Notes
issues int Storage size used for the user's issue & comment attachments [optional]
releases int Storage size used for the user's release attachments [optional]

Example

from clientapi_forgejo.models.quota_used_size_assets_attachments import QuotaUsedSizeAssetsAttachments

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

# convert the object into a dict
quota_used_size_assets_attachments_dict = quota_used_size_assets_attachments_instance.to_dict()
# create an instance of QuotaUsedSizeAssetsAttachments from a dict
quota_used_size_assets_attachments_from_dict = QuotaUsedSizeAssetsAttachments.from_dict(quota_used_size_assets_attachments_dict)

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