Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.39 KB

File metadata and controls

35 lines (26 loc) · 1.39 KB

WhatsappTemplateResponse

Whatsapp Cloud API template

Properties

Name Type Description Notes
id str Template ID
components List[WhatsappTemplateComponent] List of template components
language str Language of the template
name str Name of the template
category WhatsappTemplateCategory
status WhatsappTemplateStatus

Example

from messente_api.models.whatsapp_template_response import WhatsappTemplateResponse

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

# convert the object into a dict
whatsapp_template_response_dict = whatsapp_template_response_instance.to_dict()
# create an instance of WhatsappTemplateResponse from a dict
whatsapp_template_response_from_dict = WhatsappTemplateResponse.from_dict(whatsapp_template_response_dict)

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