HITLDetailHistory

Schema for Human-in-the-loop detail history.

Properties

NameTypeDescriptionNotes
assigned_usersList[HITLUser][optional]
bodystr[optional]
chosen_optionsList[str][optional]
created_atdatetime
defaultsList[str][optional]
multiplebool[optional] [default to False]
optionsList[str]
paramsDict[str, object][optional]
params_inputDict[str, object][optional]
responded_atdatetime[optional]
responded_by_userHITLUser[optional]
response_receivedbool[optional] [default to False]
subjectstr
task_instanceTaskInstanceHistoryResponse

Example

from airflow_client.client.models.hitl_detail_history import HITLDetailHistory

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

# convert the object into a dict
hitl_detail_history_dict = hitl_detail_history_instance.to_dict()
# create an instance of HITLDetailHistory from a dict
hitl_detail_history_from_dict = HITLDetailHistory.from_dict(hitl_detail_history_dict)

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