Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.32 KB

File metadata and controls

32 lines (23 loc) · 1.32 KB

EnginePerformanceResponse

Response for engine performance query.

Properties

Name Type Description Notes
time_range ApiAnalyticsModelsTimeRange Time range of the query
metrics List[PerformanceMetric] Time-series performance metrics
summary PerformanceSummary Overall summary statistics [optional]

Example

from mixpeek.models.engine_performance_response import EnginePerformanceResponse

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

# convert the object into a dict
engine_performance_response_dict = engine_performance_response_instance.to_dict()
# create an instance of EnginePerformanceResponse from a dict
engine_performance_response_from_dict = EnginePerformanceResponse.from_dict(engine_performance_response_dict)

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