Whatsapp Cloud API template
| 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 |
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)