| Name | Type | Description | Notes |
|---|---|---|---|
| card_width | CardWidthEnum | ||
| card_contents | List[RbmCardContent] | ||
| suggestions | List[MultiChannelAction] | An array of suggested actions for the recipient. | [optional] |
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)