Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.54 KB

File metadata and controls

43 lines (34 loc) · 1.54 KB

HITLDetail

Schema for Human-in-the-loop detail.

Properties

Name Type Description Notes
assigned_users List[HITLUser] [optional]
body str [optional]
chosen_options List[str] [optional]
created_at datetime
defaults List[str] [optional]
multiple bool [optional] [default to False]
options List[str]
params Dict[str, object] [optional]
params_input Dict[str, object] [optional]
responded_at datetime [optional]
responded_by_user HITLUser [optional]
response_received bool [optional] [default to False]
subject str
task_instance TaskInstanceResponse

Example

from airflow_client.client.models.hitl_detail import HITLDetail

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

# convert the object into a dict
hitl_detail_dict = hitl_detail_instance.to_dict()
# create an instance of HITLDetail from a dict
hitl_detail_from_dict = HITLDetail.from_dict(hitl_detail_dict)

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