| Name | Type | Description | Notes |
|---|---|---|---|
| metrics | Dict[str, List[List[float]]] | ||
| service | Service |
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)