Asset event collection response.
| Name | Type | Description | Notes |
|---|---|---|---|
| asset_events | List[AssetEventResponse] | ||
| total_entries | int |
fromairflow_client.client.models.asset_event_collection_responseimportAssetEventCollectionResponse# TODO update the JSON string belowjson="{}"# create an instance of AssetEventCollectionResponse from a JSON stringasset_event_collection_response_instance=AssetEventCollectionResponse.from_json(json)
# print the JSON string representation of the objectprint(AssetEventCollectionResponse.to_json())
# convert the object into a dictasset_event_collection_response_dict=asset_event_collection_response_instance.to_dict()
# create an instance of AssetEventCollectionResponse from a dictasset_event_collection_response_from_dict=AssetEventCollectionResponse.from_dict(asset_event_collection_response_dict)