It shows from where the call is destined to. It includes the following information: 1. List of Application Perspectives from which the call is destined to. 2. Destination service and destination endpoint. 3. Physical context from the infrastructure point of view.
| Name | Type | Description | Notes |
|---|---|---|---|
| applications | List[Application] | ||
| endpoint | Endpoint | [optional] | |
| physical_context | PhysicalContext | [optional] | |
| service | Service | [optional] |
from instana_client.models.span_relation import SpanRelation
# TODO update the JSON string below
json = "{}"
# create an instance of SpanRelation from a JSON string
span_relation_instance = SpanRelation.from_json(json)
# print the JSON string representation of the object
print(SpanRelation.to_json())
# convert the object into a dict
span_relation_dict = span_relation_instance.to_dict()
# create an instance of SpanRelation from a dict
span_relation_from_dict = SpanRelation.from_dict(span_relation_dict)