Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 997 Bytes

QuotaGroup.md

File metadata and controls

31 lines (22 loc) · 997 Bytes

QuotaGroup

QuotaGroup represents a quota group

Properties

Name Type Description Notes
name str Name of the group [optional]
rules List[QuotaRuleInfo] Rules associated with the group [optional]

Example

from clientapi_forgejo.models.quota_group import QuotaGroup

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

# convert the object into a dict
quota_group_dict = quota_group_instance.to_dict()
# create an instance of QuotaGroup from a dict
quota_group_from_dict = QuotaGroup.from_dict(quota_group_dict)

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