Response returned when a connection test has been enqueued for worker execution.
| Name | Type | Description | Notes |
|---|---|---|---|
| connection_id | str | ||
| state | str | ||
| token | str |
from airflow_client.client.models.connection_test_queued_response import ConnectionTestQueuedResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionTestQueuedResponse from a JSON string
connection_test_queued_response_instance = ConnectionTestQueuedResponse.from_json(json)
# print the JSON string representation of the object
print(ConnectionTestQueuedResponse.to_json())
# convert the object into a dict
connection_test_queued_response_dict = connection_test_queued_response_instance.to_dict()
# create an instance of ConnectionTestQueuedResponse from a dict
connection_test_queued_response_from_dict = ConnectionTestQueuedResponse.from_dict(connection_test_queued_response_dict)