Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

MessageQuery.md

File metadata and controls

33 lines (24 loc) · 1.19 KB

MessageQuery

Properties

Name Type Description Notes
resources List[str] The list of resources to retrieve the messages for
limit int The number of messages per resource to retrieve
var_from MessageQueryFrom [optional]
until MessageQueryUntil [optional]
window MessageQueryWindow [optional]

Example

from waylay.services.data.models.message_query import MessageQuery

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

# convert the object into a dict
message_query_dict = message_query_instance.to_dict()
# create an instance of MessageQuery from a dict
message_query_form_dict = message_query.from_dict(message_query_dict)

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