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

Name Type Description Notes
links List[Link] [optional]
data object [optional]
errors List[ErrorObject] [optional]

Example

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)

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