thousandeyes-sdk-python/thousandeyes-sdk-endpoint-agents/docs/AgentExplainabilityFailure.md
2026-09-10 16:54:07 +00:00

1.2 KiB

AgentExplainabilityFailure

A machine-readable explanation for an endpoint agent collection failure.

Properties

Name Type Description Notes
reason_code str Failure reason reported by the agent. New reason codes may be introduced over time.

Example

from thousandeyes_sdk.endpoint_agents.models.agent_explainability_failure import AgentExplainabilityFailure

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

# convert the object into a dict
agent_explainability_failure_dict = agent_explainability_failure_instance.to_dict()
# create an instance of AgentExplainabilityFailure from a dict
agent_explainability_failure_from_dict = AgentExplainabilityFailure.from_dict(agent_explainability_failure_dict)

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