Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.05 KB

File metadata and controls

31 lines (22 loc) · 1.05 KB

RcsRichCard

RCS rich card object. Exactly one of "standalone_card" and "carousel_card" must be provided

Properties

Name Type Description Notes
standalone_card RcsStandaloneCard [optional]
carousel_card RcsCarouselCard [optional]

Example

from messente_api.models.rcs_rich_card import RcsRichCard

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

# convert the object into a dict
rcs_rich_card_dict = rcs_rich_card_instance.to_dict()
# create an instance of RcsRichCard from a dict
rcs_rich_card_from_dict = RcsRichCard.from_dict(rcs_rich_card_dict)

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