Event Log Collection Response.
| Name | Type | Description | Notes |
|---|---|---|---|
| event_logs | List[EventLogResponse] | ||
| total_entries | int |
fromairflow_client.client.models.event_log_collection_responseimportEventLogCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of EventLogCollectionResponse from a JSON stringevent_log_collection_response_instance=EventLogCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(EventLogCollectionResponse.to_json())
# convert the object into a dictevent_log_collection_response_dict=event_log_collection_response_instance.to_dict()
# create an instance of EventLogCollectionResponse from a dictevent_log_collection_response_from_dict=EventLogCollectionResponse.from_dict(event_log_collection_response_dict)