The upper bound of the time range to retrieve message from
Name | Type | Description | Notes |
---|
from waylay.services.data.models.message_query_until import MessageQueryUntil
# TODO update the JSON string below
json = "{}"
# create an instance of MessageQueryUntil from a JSON string
message_query_until_instance = MessageQueryUntil.from_json(json)
# print the JSON string representation of the object
print MessageQueryUntil.to_json()
# convert the object into a dict
message_query_until_dict = message_query_until_instance.to_dict()
# create an instance of MessageQueryUntil from a dict
message_query_until_form_dict = message_query_until.from_dict(message_query_until_dict)