Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.53 KB

File metadata and controls

32 lines (23 loc) · 1.53 KB

MultiChannelChannelListRequestObject

Properties

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 MmsMessageContent

Example

from bandwidth.models.multi_channel_channel_list_request_object import MultiChannelChannelListRequestObject

# TODO update the JSON string below
json = "{}"
# create an instance of MultiChannelChannelListRequestObject from a JSON string
multi_channel_channel_list_request_object_instance = MultiChannelChannelListRequestObject.from_json(json)
# print the JSON string representation of the object
print(MultiChannelChannelListRequestObject.to_json())

# convert the object into a dict
multi_channel_channel_list_request_object_dict = multi_channel_channel_list_request_object_instance.to_dict()
# create an instance of MultiChannelChannelListRequestObject from a dict
multi_channel_channel_list_request_object_from_dict = MultiChannelChannelListRequestObject.from_dict(multi_channel_channel_list_request_object_dict)

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