Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

MultiChannelError

Properties

NameTypeDescriptionNotes
linksList[Link][optional]
dataobject[optional]
errorsList[ErrorObject][optional]

Example

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)

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