thousandeyes-sdk-python/thousandeyes-sdk-usage/docs/OrganizationsQuotasAssign.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.1 KiB

OrganizationsQuotasAssign

Properties

Name Type Description Notes
organizations **List[OrganizationQuotaAssignment]** [optional]

Example

from thousandeyes_sdk.usage.models.organizations_quotas_assign import OrganizationsQuotasAssign

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

# convert the object into a dict
organizations_quotas_assign_dict = organizations_quotas_assign_instance.to_dict()
# create an instance of OrganizationsQuotasAssign from a dict
organizations_quotas_assign_from_dict = OrganizationsQuotasAssign.from_dict(organizations_quotas_assign_dict)

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