QuotaUsedSizeGit represents the size-based git (lfs) quota usage of a user
Name | Type | Description | Notes |
---|---|---|---|
lfs | int | Storage size of the user's Git LFS objects | [optional] |
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)