Workflow runs by hour-of-day (0-23) in the resolved timezone.
| Name | Type | Description | Notes |
|---|---|---|---|
| timezone | str | IANA timezone the hours are in. | |
| counts_by_hour | List[int] | Exactly 24 entries; index i is the run count for hour i. |
from ksapi.models.hour_histogram_response import HourHistogramResponse
# TODO update the JSON string below
json = "{}"
# create an instance of HourHistogramResponse from a JSON string
hour_histogram_response_instance = HourHistogramResponse.from_json(json)
# print the JSON string representation of the object
print(HourHistogramResponse.to_json())
# convert the object into a dict
hour_histogram_response_dict = hour_histogram_response_instance.to_dict()
# create an instance of HourHistogramResponse from a dict
hour_histogram_response_from_dict = HourHistogramResponse.from_dict(hour_histogram_response_dict)