Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

ServiceSimple

The destination service.

Properties

Name Type Description Notes
id str Unique ID of the Service. Eg: `3feb3dcd206c166ef2b41c707e0cd38d7cd325aa`. [optional]
label str Name of the Service. Eg: `payment`. [optional]

Example

from instana_client.models.service_simple import ServiceSimple

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

# convert the object into a dict
service_simple_dict = service_simple_instance.to_dict()
# create an instance of ServiceSimple from a dict
service_simple_from_dict = ServiceSimple.from_dict(service_simple_dict)

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