thousandeyes-sdk-python/thousandeyes-sdk-usage/docs/AccountGroupQuota.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

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)

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