thousandeyes-sdk-python/thousandeyes-sdk-usage/docs/QuotasUnassign.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

912 B

QuotasUnassign

Properties

Name Type Description Notes
organizations List[str] [optional]

Example

from thousandeyes_sdk.usage.models.quotas_unassign import QuotasUnassign

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

# convert the object into a dict
quotas_unassign_dict = quotas_unassign_instance.to_dict()
# create an instance of QuotasUnassign from a dict
quotas_unassign_from_dict = QuotasUnassign.from_dict(quotas_unassign_dict)

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