Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

TimeWindowFrom.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

TimeWindowFrom

The start of the time window for which results will be returned. One of the time line specifiers.

Properties

Name Type Description Notes

Example

from waylay.services.queries.models.time_window_from import TimeWindowFrom

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

# convert the object into a dict
time_window_from_dict = time_window_from_instance.to_dict()
# create an instance of TimeWindowFrom from a dict
time_window_from_form_dict = time_window_from.from_dict(time_window_from_dict)

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