Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.17 KB

File metadata and controls

31 lines (22 loc) · 1.17 KB

AssetEventCollectionResponse

Asset event collection response.

Properties

NameTypeDescriptionNotes
asset_eventsList[AssetEventResponse]
total_entriesint

Example

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)

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