Response body for GET /connections/{connection_id}
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| source_type | str | ||
| synced_table_count | int | ||
| table_count | int |
from hotdata.models.get_connection_response import GetConnectionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetConnectionResponse from a JSON string
get_connection_response_instance = GetConnectionResponse.from_json(json)
# print the JSON string representation of the object
print(GetConnectionResponse.to_json())
# convert the object into a dict
get_connection_response_dict = get_connection_response_instance.to_dict()
# create an instance of GetConnectionResponse from a dict
get_connection_response_from_dict = GetConnectionResponse.from_dict(get_connection_response_dict)