Schema for a Human-in-the-loop users.
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str |
from airflow_client.client.models.hitl_user import HITLUser # TODO update the JSON string below json = "{}" # create an instance of HITLUser from a JSON string hitl_user_instance = HITLUser.from_json(json) # print the JSON string representation of the object print(HITLUser.to_json()) # convert the object into a dict hitl_user_dict = hitl_user_instance.to_dict() # create an instance of HITLUser from a dict hitl_user_from_dict = HITLUser.from_dict(hitl_user_dict)