Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Latest commit

 

History

History
29 lines (20 loc) · 1010 Bytes

File metadata and controls

29 lines (20 loc) · 1010 Bytes

SetTaskInstanceNote

Properties

Name Type Description Notes
note str The custom note to set for this Task Instance.

Example

from titanium_airflow_client.models.set_task_instance_note import SetTaskInstanceNote

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

# convert the object into a dict
set_task_instance_note_dict = set_task_instance_note_instance.to_dict()
# create an instance of SetTaskInstanceNote from a dict
set_task_instance_note_from_dict = SetTaskInstanceNote.from_dict(set_task_instance_note_dict)

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