The destination service's endpoint where the call enters.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Unique ID of the Endpoint. Eg: `NCRq5oYnan5x-PkdTPQwLLUdu5M`. | [optional] |
| label | str | Name of the Endpoint. Eg: `GET /api/fetch`. | [optional] |
| type | str | The type of the Endpoint. | [optional] |
from instana_client.models.endpoint_simple import EndpointSimple
# TODO update the JSON string below
json = "{}"
# create an instance of EndpointSimple from a JSON string
endpoint_simple_instance = EndpointSimple.from_json(json)
# print the JSON string representation of the object
print(EndpointSimple.to_json())
# convert the object into a dict
endpoint_simple_dict = endpoint_simple_instance.to_dict()
# create an instance of EndpointSimple from a dict
endpoint_simple_from_dict = EndpointSimple.from_dict(endpoint_simple_dict)