Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

File metadata and controls

31 lines (22 loc) · 1.17 KB

MultiChannelMessageContent

The structure of the content field of a multichannel message.

Properties

Name Type Description Notes
text str [optional]
media RbmMessageContentFile [optional]

Example

from bandwidth.models.multi_channel_message_content import MultiChannelMessageContent

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

# convert the object into a dict
multi_channel_message_content_dict = multi_channel_message_content_instance.to_dict()
# create an instance of MultiChannelMessageContent from a dict
multi_channel_message_content_from_dict = MultiChannelMessageContent.from_dict(multi_channel_message_content_dict)

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