Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

EndpointSimple

The destination service's endpoint where the call enters.

Properties

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]

Example

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)

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