from bandwidth.models.multi_channel_channel_list_response_object import MultiChannelChannelListResponseObject
# TODO update the JSON string below
json = "{}"
# create an instance of MultiChannelChannelListResponseObject from a JSON string
multi_channel_channel_list_response_object_instance = MultiChannelChannelListResponseObject.from_json(json)
# print the JSON string representation of the object
print(MultiChannelChannelListResponseObject.to_json())
# convert the object into a dict
multi_channel_channel_list_response_object_dict = multi_channel_channel_list_response_object_instance.to_dict()
# create an instance of MultiChannelChannelListResponseObject from a dict
multi_channel_channel_list_response_object_from_dict = MultiChannelChannelListResponseObject.from_dict(multi_channel_channel_list_response_object_dict)