Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

DAGRunPatchBody

DAG Run Serializer for PATCH requests.

Properties

Name Type Description Notes
note str [optional]
state DAGRunPatchStates [optional]

Example

from airflow_client.client.models.dag_run_patch_body import DAGRunPatchBody

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

# convert the object into a dict
dag_run_patch_body_dict = dag_run_patch_body_instance.to_dict()
# create an instance of DAGRunPatchBody from a dict
dag_run_patch_body_from_dict = DAGRunPatchBody.from_dict(dag_run_patch_body_dict)

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