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