thousandeyes-sdk-python/thousandeyes-sdk-agents/docs/LocalProblemAgent.md
Miguel Pragosa 23bfb1d946
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#158)
Co-authored-by: API Team <api-team@thousandeyes.com>
2026-06-23 11:11:56 +01:00

1.2 KiB

LocalProblemAgent

Properties

Name Type Description Notes
agent_id str Agent ID. [optional] [readonly]
agent_name str Agent name. [optional] [readonly]
country_id str Two-letter ISO country code where the agent is located. [optional] [readonly]
location str Agent location. [optional] [readonly]

Example

from thousandeyes_sdk.agents.models.local_problem_agent import LocalProblemAgent

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

# convert the object into a dict
local_problem_agent_dict = local_problem_agent_instance.to_dict()
# create an instance of LocalProblemAgent from a dict
local_problem_agent_from_dict = LocalProblemAgent.from_dict(local_problem_agent_dict)

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