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
QuotasQuotasInner
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| organization_quota | OrganizationQuota | [optional] | |
| account_group_quotas | **List[AccountGroupQuota]** | [optional] |
Example
from usage.models.quotas_quotas_inner import QuotasQuotasInner
# TODO update the JSON string below
json = "{}"
# create an instance of QuotasQuotasInner from a JSON string
quotas_quotas_inner_instance = QuotasQuotasInner.from_json(json)
# print the JSON string representation of the object
print(QuotasQuotasInner.to_json())
# convert the object into a dict
quotas_quotas_inner_dict = quotas_quotas_inner_instance.to_dict()
# create an instance of QuotasQuotasInner from a dict
quotas_quotas_inner_from_dict = QuotasQuotasInner.from_dict(quotas_quotas_inner_dict)