Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

RcsCarouselCard

RCS Carousel Card.

Properties

Name Type Description Notes
card_width RcsCardWidth
card_contents List[RcsCardContent] The contents of the carousel card.

Example

from messente_api.models.rcs_carousel_card import RcsCarouselCard

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

# convert the object into a dict
rcs_carousel_card_dict = rcs_carousel_card_instance.to_dict()
# create an instance of RcsCarouselCard from a dict
rcs_carousel_card_from_dict = RcsCarouselCard.from_dict(rcs_carousel_card_dict)

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