Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 977 Bytes

SeriesQueryRequestFrom.md

File metadata and controls

28 lines (19 loc) · 977 Bytes

SeriesQueryRequestFrom

Properties

Name Type Description Notes

Example

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]