Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 951 Bytes

MessageQueryFrom.md

File metadata and controls

29 lines (20 loc) · 951 Bytes

MessageQueryFrom

The lower bound of the time range to retrieve message from

Properties

Name Type Description Notes

Example

from waylay.services.data.models.message_query_from import MessageQueryFrom

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

# convert the object into a dict
message_query_from_dict = message_query_from_instance.to_dict()
# create an instance of MessageQueryFrom from a dict
message_query_from_form_dict = message_query_from.from_dict(message_query_from_dict)

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