Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.46 KB

QueryExecutionMessage.md

File metadata and controls

36 lines (27 loc) · 1.46 KB

QueryExecutionMessage

A message object that informs or warns about a query execution issue.

Properties

Name Type Description Notes
message str A human readable message.
level QueryExecutionMessageLevel
timestamp datetime
action str The request action that caused this message.
category str The subsystem that issued this message.
properties MessageArguments [optional]
exception CauseException [optional]

Example

from waylay.services.queries.models.query_execution_message import QueryExecutionMessage

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

# convert the object into a dict
query_execution_message_dict = query_execution_message_instance.to_dict()
# create an instance of QueryExecutionMessage from a dict
query_execution_message_form_dict = query_execution_message.from_dict(query_execution_message_dict)

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