An individual log message.
| Name | Type | Description | Notes |
|---|---|---|---|
| event | str | ||
| timestamp | datetime | [optional] |
fromairflow_client.client.models.structured_log_messageimportStructuredLogMessage# TODO update the JSON string belowjson="{}"# create an instance of StructuredLogMessage from a JSON stringstructured_log_message_instance=StructuredLogMessage.from_json(json)
# print the JSON string representation of the objectprint(StructuredLogMessage.to_json())
# convert the object into a dictstructured_log_message_dict=structured_log_message_instance.to_dict()
# create an instance of StructuredLogMessage from a dictstructured_log_message_from_dict=StructuredLogMessage.from_dict(structured_log_message_dict)