Schema for a collection of Human-in-the-loop details.
| Name | Type | Description | Notes |
|---|---|---|---|
| hitl_details | List[HITLDetail] | ||
| total_entries | int |
from airflow_client.client.models.hitl_detail_collection import HITLDetailCollection
# TODO update the JSON string below
json = "{}"
# create an instance of HITLDetailCollection from a JSON string
hitl_detail_collection_instance = HITLDetailCollection.from_json(json)
# print the JSON string representation of the object
print(HITLDetailCollection.to_json())
# convert the object into a dict
hitl_detail_collection_dict = hitl_detail_collection_instance.to_dict()
# create an instance of HITLDetailCollection from a dict
hitl_detail_collection_from_dict = HITLDetailCollection.from_dict(hitl_detail_collection_dict)