Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

WhatsAppTemplate.md

File metadata and controls

32 lines (23 loc) · 1.11 KB

WhatsAppTemplate

Whatsapp Cloud API template

Properties

Name Type Description Notes
name str Name of the template
language WhatsAppLanguage
components List[WhatsAppComponent] List of template components [optional]

Example

from messente_api.models.whats_app_template import WhatsAppTemplate

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

# convert the object into a dict
whats_app_template_dict = whats_app_template_instance.to_dict()
# create an instance of WhatsAppTemplate from a dict
whats_app_template_from_dict = WhatsAppTemplate.from_dict(whats_app_template_dict)

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