Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.5 KB

File metadata and controls

34 lines (25 loc) · 1.5 KB

RbmMessageContentRichCard

Properties

Name Type Description Notes
orientation StandaloneCardOrientationEnum
thumbnail_image_alignment ThumbnailAlignmentEnum
card_content RbmCardContent
suggestions List[MultiChannelAction] An array of suggested actions for the recipient. [optional]
card_width CardWidthEnum
card_contents List[RbmCardContent]

Example

from bandwidth.models.rbm_message_content_rich_card import RbmMessageContentRichCard

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

# convert the object into a dict
rbm_message_content_rich_card_dict = rbm_message_content_rich_card_instance.to_dict()
# create an instance of RbmMessageContentRichCard from a dict
rbm_message_content_rich_card_from_dict = RbmMessageContentRichCard.from_dict(rbm_message_content_rich_card_dict)

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