Event Log Response.
| Name | Type | Description | Notes |
|---|---|---|---|
| dag_display_name | str | [optional] | |
| dag_id | str | [optional] | |
| event | str | ||
| event_log_id | int | ||
| extra | str | [optional] | |
| logical_date | datetime | [optional] | |
| map_index | int | [optional] | |
| owner | str | [optional] | |
| run_id | str | [optional] | |
| task_id | str | [optional] | |
| try_number | int | [optional] | |
| when | datetime |
from airflow_client.client.models.event_log_response import EventLogResponse # TODO update the JSON string below json = "{}" # create an instance of EventLogResponse from a JSON string event_log_response_instance = EventLogResponse.from_json(json) # print the JSON string representation of the object print(EventLogResponse.to_json()) # convert the object into a dict event_log_response_dict = event_log_response_instance.to_dict() # create an instance of EventLogResponse from a dict event_log_response_from_dict = EventLogResponse.from_dict(event_log_response_dict)