| Name | Type | Description | Notes |
|---|---|---|---|
| var_from | str | The sender ID of the message. This could be an alphanumeric sender ID. | |
| application_id | str | The ID of the Application your from number or senderId is associated with in the Bandwidth Phone Number Dashboard. | |
| channel | MultiChannelMessageChannelEnum | ||
| content | MultiChannelChannelListRBMObjectAllOfContent | ||
| owner | str | The Bandwidth senderId associated with the message. Identical to 'from'. |
from bandwidth.models.multi_channel_channel_list_rbm_response_object import MultiChannelChannelListRBMResponseObject
# TODO update the JSON string below
json = "{}"
# create an instance of MultiChannelChannelListRBMResponseObject from a JSON string
multi_channel_channel_list_rbm_response_object_instance = MultiChannelChannelListRBMResponseObject.from_json(json)
# print the JSON string representation of the object
print(MultiChannelChannelListRBMResponseObject.to_json())
# convert the object into a dict
multi_channel_channel_list_rbm_response_object_dict = multi_channel_channel_list_rbm_response_object_instance.to_dict()
# create an instance of MultiChannelChannelListRBMResponseObject from a dict
multi_channel_channel_list_rbm_response_object_from_dict = MultiChannelChannelListRBMResponseObject.from_dict(multi_channel_channel_list_rbm_response_object_dict)