Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

UpdateHITLDetailPayload

Schema for updating the content of a Human-in-the-loop detail.

Properties

Name Type Description Notes
chosen_options List[str]
params_input Dict[str, object] [optional]

Example

from airflow_client.client.models.update_hitl_detail_payload import UpdateHITLDetailPayload

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

# convert the object into a dict
update_hitl_detail_payload_dict = update_hitl_detail_payload_instance.to_dict()
# create an instance of UpdateHITLDetailPayload from a dict
update_hitl_detail_payload_from_dict = UpdateHITLDetailPayload.from_dict(update_hitl_detail_payload_dict)

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