thousandeyes-sdk-python/usage_api/docs/AccountGroupQuota.md
2023-12-11 09:29:15 +00: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 usage_api.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_form_dict = account_group_quota.from_dict(account_group_quota_dict)

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