The lower bound of the time range to retrieve message from
Name | Type | Description | Notes |
---|
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)