Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.2 KB

File metadata and controls

32 lines (23 loc) · 1.2 KB

CallRelation

It shows from where the call is destined to. It includes destination service, its endpoint and list of technologies of the service.

Properties

Name Type Description Notes
endpoint EndpointSimple [optional]
service ServiceSimple [optional]
technologies List[str] List of technologies: `Eg:["springbootApplicationContainer"]` [optional]

Example

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)

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