Request body for patching task instance state.
| Name | Type | Description | Notes |
|---|---|---|---|
| include_downstream | bool | [optional] [default to False] | |
| include_future | bool | [optional] [default to False] | |
| include_past | bool | [optional] [default to False] | |
| include_upstream | bool | [optional] [default to False] | |
| new_state | TaskInstanceState | [optional] | |
| note | str | [optional] |
fromairflow_client.client.models.patch_task_instance_bodyimportPatchTaskInstanceBody# TODO update the JSON string belowjson="{}"# create an instance of PatchTaskInstanceBody from a JSON stringpatch_task_instance_body_instance=PatchTaskInstanceBody.from_json(json)
# print the JSON string representation of the objectprint(PatchTaskInstanceBody.to_json())
# convert the object into a dictpatch_task_instance_body_dict=patch_task_instance_body_instance.to_dict()
# create an instance of PatchTaskInstanceBody from a dictpatch_task_instance_body_from_dict=PatchTaskInstanceBody.from_dict(patch_task_instance_body_dict)