Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

ServiceMetricResult

Properties

Name Type Description Notes
adjusted_timeframe AdjustedTimeframe [optional]
items List[ServiceItem]
page int Page Number [optional]
page_size int [optional]
total_hits int [optional]

Example

from instana_client.models.service_metric_result import ServiceMetricResult

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

# convert the object into a dict
service_metric_result_dict = service_metric_result_instance.to_dict()
# create an instance of ServiceMetricResult from a dict
service_metric_result_from_dict = ServiceMetricResult.from_dict(service_metric_result_dict)

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