Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

RbmMessageCarouselCard

Properties

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

Example

from bandwidth.models.rbm_message_carousel_card import RbmMessageCarouselCard

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

# convert the object into a dict
rbm_message_carousel_card_dict = rbm_message_carousel_card_instance.to_dict()
# create an instance of RbmMessageCarouselCard from a dict
rbm_message_carousel_card_from_dict = RbmMessageCarouselCard.from_dict(rbm_message_carousel_card_dict)

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