Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

QuotaUsedSizeGit.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

QuotaUsedSizeGit

QuotaUsedSizeGit represents the size-based git (lfs) quota usage of a user

Properties

Name Type Description Notes
lfs int Storage size of the user's Git LFS objects [optional]

Example

from clientapi_forgejo.models.quota_used_size_git import QuotaUsedSizeGit

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

# convert the object into a dict
quota_used_size_git_dict = quota_used_size_git_instance.to_dict()
# create an instance of QuotaUsedSizeGit from a dict
quota_used_size_git_from_dict = QuotaUsedSizeGit.from_dict(quota_used_size_git_dict)

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