A named series (e.g. one per document origin or ingestion outcome).
| Name | Type | Description | Notes |
|---|---|---|---|
| label | str | Series label, e.g. 'SOURCE' or 'FAILED'. | |
| points | List[TimeseriesPoint] | [optional] |
from ksapi.models.labeled_series import LabeledSeries
# TODO update the JSON string below
json = "{}"
# create an instance of LabeledSeries from a JSON string
labeled_series_instance = LabeledSeries.from_json(json)
# print the JSON string representation of the object
print(LabeledSeries.to_json())
# convert the object into a dict
labeled_series_dict = labeled_series_instance.to_dict()
# create an instance of LabeledSeries from a dict
labeled_series_from_dict = LabeledSeries.from_dict(labeled_series_dict)