Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.28 KB

File metadata and controls

37 lines (28 loc) · 1.28 KB

DagRunAssetReference

DAGRun serializer for asset responses.

Properties

Name Type Description Notes
dag_id str
data_interval_end datetime [optional]
data_interval_start datetime [optional]
end_date datetime [optional]
logical_date datetime [optional]
run_id str
start_date datetime
state str

Example

from airflow_client.client.models.dag_run_asset_reference import DagRunAssetReference

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

# convert the object into a dict
dag_run_asset_reference_dict = dag_run_asset_reference_instance.to_dict()
# create an instance of DagRunAssetReference from a dict
dag_run_asset_reference_from_dict = DagRunAssetReference.from_dict(dag_run_asset_reference_dict)

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