Name | Type | Description | Notes |
---|---|---|---|
href | str | [optional] | |
interconnections | List[Interconnection] | [optional] | |
meta | Meta | [optional] |
from equinix_metal.models.interconnection_list import InterconnectionList
# TODO update the JSON string below
json = "{}"
# create an instance of InterconnectionList from a JSON string
interconnection_list_instance = InterconnectionList.from_json(json)
# print the JSON string representation of the object
print(InterconnectionList.to_json())
# convert the object into a dict
interconnection_list_dict = interconnection_list_instance.to_dict()
# create an instance of InterconnectionList from a dict
interconnection_list_form_dict = interconnection_list.from_dict(interconnection_list_dict)