Event Log Collection Response.
| Name | Type | Description | Notes |
|---|---|---|---|
| event_logs | List[EventLogResponse] | ||
| total_entries | int |
from airflow_client.client.models.event_log_collection_response import EventLogCollectionResponse # TODO update the JSON string below json = "{}" # create an instance of EventLogCollectionResponse from a JSON string event_log_collection_response_instance = EventLogCollectionResponse.from_json(json) # print the JSON string representation of the object print(EventLogCollectionResponse.to_json()) # convert the object into a dict event_log_collection_response_dict = event_log_collection_response_instance.to_dict() # create an instance of EventLogCollectionResponse from a dict event_log_collection_response_from_dict = EventLogCollectionResponse.from_dict(event_log_collection_response_dict)