EventLogResponse

Event Log Response.

Properties

NameTypeDescriptionNotes
dag_display_namestr[optional]
dag_idstr[optional]
eventstr
event_log_idint
extrastr[optional]
logical_datedatetime[optional]
map_indexint[optional]
ownerstr[optional]
run_idstr[optional]
task_idstr[optional]
try_numberint[optional]
whendatetime

Example

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)

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