Name |
Type |
Description |
Notes |
from waylay.services.data.models.series_query_request_window import SeriesQueryRequestWindow
# TODO update the JSON string below
json = "{}"
# create an instance of SeriesQueryRequestWindow from a JSON string
series_query_request_window_instance = SeriesQueryRequestWindow.from_json(json)
# print the JSON string representation of the object
print SeriesQueryRequestWindow.to_json()
# convert the object into a dict
series_query_request_window_dict = series_query_request_window_instance.to_dict()
# create an instance of SeriesQueryRequestWindow from a dict
series_query_request_window_form_dict = series_query_request_window.from_dict(series_query_request_window_dict)
[Back to Model list] [Back to API list] [Back to README]