Response of updating a Human-in-the-loop detail.
| Name | Type | Description | Notes |
|---|---|---|---|
| chosen_options | List[str] | ||
| params_input | Dict[str, object] | [optional] | |
| responded_at | datetime | ||
| responded_by | HITLUser |
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)