Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 913 Bytes

File metadata and controls

30 lines (21 loc) · 913 Bytes

ServiceItem

Properties

Name Type Description Notes
metrics Dict[str, List[List[float]]]
service Service

Example

from instana_client.models.service_item import ServiceItem

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

# convert the object into a dict
service_item_dict = service_item_instance.to_dict()
# create an instance of ServiceItem from a dict
service_item_from_dict = ServiceItem.from_dict(service_item_dict)

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