Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

EventLogCollectionResponse

Event Log Collection Response.

Properties

NameTypeDescriptionNotes
event_logsList[EventLogResponse]
total_entriesint

Example

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)

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