Queued Event Collection serializer for responses.
| Name | Type | Description | Notes |
|---|---|---|---|
| queued_events | List[QueuedEventResponse] | ||
| total_entries | int |
from airflow_client.client.models.queued_event_collection_response import QueuedEventCollectionResponse # TODO update the JSON string below json = "{}" # create an instance of QueuedEventCollectionResponse from a JSON string queued_event_collection_response_instance = QueuedEventCollectionResponse.from_json(json) # print the JSON string representation of the object print(QueuedEventCollectionResponse.to_json()) # convert the object into a dict queued_event_collection_response_dict = queued_event_collection_response_instance.to_dict() # create an instance of QueuedEventCollectionResponse from a dict queued_event_collection_response_from_dict = QueuedEventCollectionResponse.from_dict(queued_event_collection_response_dict)