| Name |
Type |
Description |
Notes |
| note |
str |
The custom note to set for this Task Instance. |
|
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]