Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 964 Bytes

MessageQueryUntil.md

File metadata and controls

29 lines (20 loc) · 964 Bytes

MessageQueryUntil

The upper bound of the time range to retrieve message from

Properties

Name Type Description Notes

Example

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)

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