Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.03 KB

File metadata and controls

32 lines (23 loc) · 1.03 KB

RcsContentInfo

RCS content info object.

Properties

Name Type Description Notes
file_url str Required file URL
thumbnail_url str Optional thumbnail URL [optional]
force_refresh bool Force refresh the content

Example

from messente_api.models.rcs_content_info import RcsContentInfo

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

# convert the object into a dict
rcs_content_info_dict = rcs_content_info_instance.to_dict()
# create an instance of RcsContentInfo from a dict
rcs_content_info_from_dict = RcsContentInfo.from_dict(rcs_content_info_dict)

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