Response body for POST /connections
| Name | Type | Description | Notes |
|---|---|---|---|
| discovery_error | str | [optional] | |
| discovery_status | DiscoveryStatus | ||
| id | str | ||
| name | str | ||
| source_type | str | ||
| tables_discovered | int |
from hotdata.models.create_connection_response import CreateConnectionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of CreateConnectionResponse from a JSON string
create_connection_response_instance = CreateConnectionResponse.from_json(json)
# print the JSON string representation of the object
print(CreateConnectionResponse.to_json())
# convert the object into a dict
create_connection_response_dict = create_connection_response_instance.to_dict()
# create an instance of CreateConnectionResponse from a dict
create_connection_response_from_dict = CreateConnectionResponse.from_dict(create_connection_response_dict)