Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

HITLDetailResponse

Response of updating a Human-in-the-loop detail.

Properties

Name Type Description Notes
chosen_options List[str]
params_input Dict[str, object] [optional]
responded_at datetime
responded_by HITLUser

Example

from airflow_client.client.models.hitl_detail_response import HITLDetailResponse

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

# convert the object into a dict
hitl_detail_response_dict = hitl_detail_response_instance.to_dict()
# create an instance of HITLDetailResponse from a dict
hitl_detail_response_from_dict = HITLDetailResponse.from_dict(hitl_detail_response_dict)

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