Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 971 Bytes

File metadata and controls

32 lines (23 loc) · 971 Bytes

ConnectionInfo

Single connection metadata for API responses

Properties

Name Type Description Notes
id str
name str
source_type str

Example

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)

[Back to Model list] [Back to API list] [Back to README]