mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.2 KiB
1.2 KiB
UnitAllocationSummary
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| used | int | The total number of allocation units used. | [optional] |
| projected | int | The total number of projected allocation units. | [optional] |
| allocations | **List[AllocationUnitUsageBreakdown]** | [optional] |
Example
from thousandeyes_sdk.usage.models.unit_allocation_summary import UnitAllocationSummary
# TODO update the JSON string below
json = "{}"
# create an instance of UnitAllocationSummary from a JSON string
unit_allocation_summary_instance = UnitAllocationSummary.from_json(json)
# print the JSON string representation of the object
print(UnitAllocationSummary.to_json())
# convert the object into a dict
unit_allocation_summary_dict = unit_allocation_summary_instance.to_dict()
# create an instance of UnitAllocationSummary from a dict
unit_allocation_summary_from_dict = UnitAllocationSummary.from_dict(unit_allocation_summary_dict)