TaskOutletAssetReference

Task outlet reference serializer for assets.

Properties

NameTypeDescriptionNotes
created_atdatetime
dag_idstr
task_idstr
updated_atdatetime

Example

from airflow_client.client.models.task_outlet_asset_reference import TaskOutletAssetReference

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

# convert the object into a dict
task_outlet_asset_reference_dict = task_outlet_asset_reference_instance.to_dict()
# create an instance of TaskOutletAssetReference from a dict
task_outlet_asset_reference_from_dict = TaskOutletAssetReference.from_dict(task_outlet_asset_reference_dict)

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