mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.0 KiB
1.0 KiB
AccountGroupQuota
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| value | int | Value of the quota for the given Account Group. | [optional] |
| aid | str | Unique ID of the account group. | [optional] |
Example
from thousandeyes_sdk.usage.models.account_group_quota import AccountGroupQuota
# TODO update the JSON string below
json = "{}"
# create an instance of AccountGroupQuota from a JSON string
account_group_quota_instance = AccountGroupQuota.from_json(json)
# print the JSON string representation of the object
print(AccountGroupQuota.to_json())
# convert the object into a dict
account_group_quota_dict = account_group_quota_instance.to_dict()
# create an instance of AccountGroupQuota from a dict
account_group_quota_from_dict = AccountGroupQuota.from_dict(account_group_quota_dict)