Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 901 Bytes

File metadata and controls

30 lines (21 loc) · 901 Bytes

EndpointNode

Properties

Name Type Description Notes
endpoint_id str
inclusive bool [optional]

Example

from instana_client.models.endpoint_node import EndpointNode

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

# convert the object into a dict
endpoint_node_dict = endpoint_node_instance.to_dict()
# create an instance of EndpointNode from a dict
endpoint_node_from_dict = EndpointNode.from_dict(endpoint_node_dict)

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