Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

EndpointMetricResult

Properties

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

Example

from instana_client.models.endpoint_metric_result import EndpointMetricResult

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

# convert the object into a dict
endpoint_metric_result_dict = endpoint_metric_result_instance.to_dict()
# create an instance of EndpointMetricResult from a dict
endpoint_metric_result_from_dict = EndpointMetricResult.from_dict(endpoint_metric_result_dict)

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