Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

MessageQueryWindow.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

MessageQueryWindow

A duration expression. Will be evaluated vs from, until or the query execution date to get the actual time range

Properties

Name Type Description Notes

Example

from waylay.services.data.models.message_query_window import MessageQueryWindow

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

# convert the object into a dict
message_query_window_dict = message_query_window_instance.to_dict()
# create an instance of MessageQueryWindow from a dict
message_query_window_form_dict = message_query_window.from_dict(message_query_window_dict)

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