It shows from where the call is destined to. It includes destination service, its endpoint and list of technologies of the service.
| Name | Type | Description | Notes |
|---|---|---|---|
| endpoint | EndpointSimple | [optional] | |
| service | ServiceSimple | [optional] | |
| technologies | List[str] | List of technologies: `Eg:["springbootApplicationContainer"]` | [optional] |
from instana_client.models.call_relation import CallRelation
# TODO update the JSON string below
json = "{}"
# create an instance of CallRelation from a JSON string
call_relation_instance = CallRelation.from_json(json)
# print the JSON string representation of the object
print(CallRelation.to_json())
# convert the object into a dict
call_relation_dict = call_relation_instance.to_dict()
# create an instance of CallRelation from a dict
call_relation_from_dict = CallRelation.from_dict(call_relation_dict)