mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-08-04 00:46:52 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
1.3 KiB
1.3 KiB
EndpointAgentLogItemsResponse
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| logs | **List[EndpointAgentLogItem]** | Log items for the endpoint agent. | |
| links | PaginationNextAndSelfLink | [optional] |
Example
from thousandeyes_sdk.endpoint_agents.models.endpoint_agent_log_items_response import EndpointAgentLogItemsResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointAgentLogItemsResponse from a JSON string
endpoint_agent_log_items_response_instance = EndpointAgentLogItemsResponse.from_json(json)
# print the JSON string representation of the object
print(EndpointAgentLogItemsResponse.to_json())
# convert the object into a dict
endpoint_agent_log_items_response_dict = endpoint_agent_log_items_response_instance.to_dict()
# create an instance of EndpointAgentLogItemsResponse from a dict
endpoint_agent_log_items_response_from_dict = EndpointAgentLogItemsResponse.from_dict(endpoint_agent_log_items_response_dict)