Single connection metadata for API responses
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | ||
| name | str | ||
| source_type | str |
from hotdata.models.connection_info import ConnectionInfo
# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionInfo from a JSON string
connection_info_instance = ConnectionInfo.from_json(json)
# print the JSON string representation of the object
print(ConnectionInfo.to_json())
# convert the object into a dict
connection_info_dict = connection_info_instance.to_dict()
# create an instance of ConnectionInfo from a dict
connection_info_from_dict = ConnectionInfo.from_dict(connection_info_dict)