| Name | Type | Description | Notes |
|---|---|---|---|
| links | List[Link] | [optional] | |
| data | object | [optional] | |
| errors | List[ErrorObject] | [optional] |
frombandwidth.models.multi_channel_errorimportMultiChannelError# TODO update the JSON string belowjson="{}"# create an instance of MultiChannelError from a JSON stringmulti_channel_error_instance=MultiChannelError.from_json(json)
# print the JSON string representation of the objectprint(MultiChannelError.to_json())
# convert the object into a dictmulti_channel_error_dict=multi_channel_error_instance.to_dict()
# create an instance of MultiChannelError from a dictmulti_channel_error_from_dict=MultiChannelError.from_dict(multi_channel_error_dict)