Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.17 KB

File metadata and controls

31 lines (22 loc) · 1.17 KB

WhatsappTemplateExample

Example of the templated content

Properties

Name Type Description Notes
header_text List[str] Example of the templated text for the header [optional]
body_text List[List[str]] Example of the templated text for the body [optional]

Example

from messente_api.models.whatsapp_template_example import WhatsappTemplateExample

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

# convert the object into a dict
whatsapp_template_example_dict = whatsapp_template_example_instance.to_dict()
# create an instance of WhatsappTemplateExample from a dict
whatsapp_template_example_from_dict = WhatsappTemplateExample.from_dict(whatsapp_template_example_dict)

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