mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
1.4 KiB
1.4 KiB
EndpointAgentsEssentialsInner
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| aid | object | Unique identifier of the account group owning the endpoint agents essentials. | [optional] |
| account_group_name | object | Name of the account group which owns the endpoint agents essentials. | [optional] |
| endpoint_agents_essentials_used | int | Number of endpoint agents essentials owned by the specific account group in the usage period. | [optional] |
Example
from usage.models.endpoint_agents_essentials_inner import EndpointAgentsEssentialsInner
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointAgentsEssentialsInner from a JSON string
endpoint_agents_essentials_inner_instance = EndpointAgentsEssentialsInner.from_json(json)
# print the JSON string representation of the object
print(EndpointAgentsEssentialsInner.to_json())
# convert the object into a dict
endpoint_agents_essentials_inner_dict = endpoint_agents_essentials_inner_instance.to_dict()
# create an instance of EndpointAgentsEssentialsInner from a dict
endpoint_agents_essentials_inner_from_dict = EndpointAgentsEssentialsInner.from_dict(endpoint_agents_essentials_inner_dict)