# AgentResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ip_addresses** | **List[str]** | Array of private IP addresses. | [optional] [readonly] **public_ip_addresses** | **List[str]** | Array of public IP addresses. | [optional] [readonly] **network** | **str** | Network (including ASN) of agent’s public IP. | [optional] [readonly] **agent_id** | **str** | Unique ID of the agent. | [optional] [readonly] **agent_name** | **str** | Name of the agent. | [optional] **location** | **str** | Location of the agent. | [optional] [readonly] **country_id** | **str** | 2-digit ISO country code | [optional] [readonly] **coordinates** | [**Coordinates**](Coordinates.md) | | [optional] **enabled** | **bool** | Flag indicating if the agent is enabled. | [optional] **prefix** | **str** | Prefix containing agents public IP address. | [optional] [readonly] **verify_ssl_certificates** | **bool** | Flag indicating if has normal SSL operations or if instead it's set to ignore SSL errors on browserbot-based tests. | [optional] [readonly] **agent_type** | [**CloudEnterpriseAgentType**](CloudEnterpriseAgentType.md) | | ## Example ```python from thousandeyes_sdk.administrative.models.agent_response import AgentResponse # TODO update the JSON string below json = "{}" # create an instance of AgentResponse from a JSON string agent_response_instance = AgentResponse.from_json(json) # print the JSON string representation of the object print(AgentResponse.to_json()) # convert the object into a dict agent_response_dict = agent_response_instance.to_dict() # create an instance of AgentResponse from a dict agent_response_from_dict = AgentResponse.from_dict(agent_response_dict) ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)