Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1003 Bytes

SeriesQueryRequestWindow.md

File metadata and controls

28 lines (19 loc) · 1003 Bytes

SeriesQueryRequestWindow

Properties

Name Type Description Notes

Example

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]