| Name | Type | Description | Notes |
|---|---|---|---|
| links | List[Link] | [optional] | |
| data | object | [optional] | |
| errors | List[ErrorObject] | [optional] |
from bandwidth.models.multi_channel_error import MultiChannelError
# TODO update the JSON string below
json = "{}"
# create an instance of MultiChannelError from a JSON string
multi_channel_error_instance = MultiChannelError.from_json(json)
# print the JSON string representation of the object
print(MultiChannelError.to_json())
# convert the object into a dict
multi_channel_error_dict = multi_channel_error_instance.to_dict()
# create an instance of MultiChannelError from a dict
multi_channel_error_from_dict = MultiChannelError.from_dict(multi_channel_error_dict)