AssetResponse

Asset serializer for responses.

Properties

NameTypeDescriptionNotes
aliasesList[AssetAliasResponse]
consuming_tasksList[TaskInletAssetReference]
created_atdatetime
extraobject[optional]
groupstr
idint
last_asset_eventLastAssetEventResponse[optional]
namestr
producing_tasksList[TaskOutletAssetReference]
scheduled_dagsList[DagScheduleAssetReference]
updated_atdatetime
uristr

Example

from airflow_client.client.models.asset_response import AssetResponse

# TODO update the JSON string below
json = "{}"
# create an instance of AssetResponse from a JSON string
asset_response_instance = AssetResponse.from_json(json)
# print the JSON string representation of the object
print(AssetResponse.to_json())

# convert the object into a dict
asset_response_dict = asset_response_instance.to_dict()
# create an instance of AssetResponse from a dict
asset_response_from_dict = AssetResponse.from_dict(asset_response_dict)

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