Response for engine stage breakdown.
| Name | Type | Description | Notes |
|---|---|---|---|
| time_range | ApiAnalyticsModelsTimeRange | Time range of the analysis | |
| stages | List[StagePerformanceOutput] | Performance breakdown by stage | |
| total_time_ms | float | Total time across all stages (sum) |
from mixpeek.models.engine_stage_breakdown_response import EngineStageBreakdownResponse
# TODO update the JSON string below
json = "{}"
# create an instance of EngineStageBreakdownResponse from a JSON string
engine_stage_breakdown_response_instance = EngineStageBreakdownResponse.from_json(json)
# print the JSON string representation of the object
print(EngineStageBreakdownResponse.to_json())
# convert the object into a dict
engine_stage_breakdown_response_dict = engine_stage_breakdown_response_instance.to_dict()
# create an instance of EngineStageBreakdownResponse from a dict
engine_stage_breakdown_response_from_dict = EngineStageBreakdownResponse.from_dict(engine_stage_breakdown_response_dict)