Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 994 Bytes

File metadata and controls

30 lines (21 loc) · 994 Bytes

ConnectionTypeSummary

Properties

Name Type Description Notes
label str
name str

Example

from hotdata.models.connection_type_summary import ConnectionTypeSummary

# TODO update the JSON string below
json = "{}"
# create an instance of ConnectionTypeSummary from a JSON string
connection_type_summary_instance = ConnectionTypeSummary.from_json(json)
# print the JSON string representation of the object
print(ConnectionTypeSummary.to_json())

# convert the object into a dict
connection_type_summary_dict = connection_type_summary_instance.to_dict()
# create an instance of ConnectionTypeSummary from a dict
connection_type_summary_from_dict = ConnectionTypeSummary.from_dict(connection_type_summary_dict)

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