Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

TimeseriesJsonResult.md

File metadata and controls

30 lines (21 loc) · 1.07 KB

TimeseriesJsonResult

Properties

Name Type Description Notes
query SeriesQueryResponse
series List[List[SeriesKeyValueInner]] Array of timestamp-value tuples

Example

from waylay.services.data.models.timeseries_json_result import TimeseriesJsonResult

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

# convert the object into a dict
timeseries_json_result_dict = timeseries_json_result_instance.to_dict()
# create an instance of TimeseriesJsonResult from a dict
timeseries_json_result_form_dict = timeseries_json_result.from_dict(timeseries_json_result_dict)

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