A knowledge-base metric bucketed over time. series carries one entry per split — two (SOURCE / GENERATED) for document_uploads, one for the ingestion, message, and search metrics.
| Name | Type | Description | Notes |
|---|---|---|---|
| metric | KbMetric | ||
| timezone | str | ||
| bucket | TimeBucket | ||
| series | List[LabeledSeries] | [optional] |
from ksapi.models.kb_timeseries_response import KbTimeseriesResponse
# TODO update the JSON string below
json = "{}"
# create an instance of KbTimeseriesResponse from a JSON string
kb_timeseries_response_instance = KbTimeseriesResponse.from_json(json)
# print the JSON string representation of the object
print(KbTimeseriesResponse.to_json())
# convert the object into a dict
kb_timeseries_response_dict = kb_timeseries_response_instance.to_dict()
# create an instance of KbTimeseriesResponse from a dict
kb_timeseries_response_from_dict = KbTimeseriesResponse.from_dict(kb_timeseries_response_dict)