Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.18 KB

File metadata and controls

33 lines (24 loc) · 1.18 KB

RcsCardContent

RCS Card Content

Properties

Name Type Description Notes
title str Title of the card content [optional]
description str Description of the card content [optional]
media RcsMedia [optional]
suggestions List[RcsSuggestion] List of suggestions that the recipient can use to respond. [optional]

Example

from messente_api.models.rcs_card_content import RcsCardContent

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

# convert the object into a dict
rcs_card_content_dict = rcs_card_content_instance.to_dict()
# create an instance of RcsCardContent from a dict
rcs_card_content_from_dict = RcsCardContent.from_dict(rcs_card_content_dict)

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