A message object that informs or warns about a query execution issue.
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] |
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)