Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

EndpointEventResult

Properties

Name Type Description Notes
application_id str ID of the application this endpoint is in scope of. [optional]
endpoint_id str ID of the endpoint. [optional]
endpoint_service_id str ID service related to this endpoint. [optional]

Example

from instana_client.models.endpoint_event_result import EndpointEventResult

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

# convert the object into a dict
endpoint_event_result_dict = endpoint_event_result_instance.to_dict()
# create an instance of EndpointEventResult from a dict
endpoint_event_result_from_dict = EndpointEventResult.from_dict(endpoint_event_result_dict)

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