Request to create a WhatsApp template
| Name | Type | Description | Notes |
|---|---|---|---|
| category | WhatsappTemplateCategory | [optional] | |
| components | List[WhatsappTemplateComponent] | List of template components | [optional] |
from messente_api.models.whatsapp_update_template_request import WhatsappUpdateTemplateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of WhatsappUpdateTemplateRequest from a JSON string
whatsapp_update_template_request_instance = WhatsappUpdateTemplateRequest.from_json(json)
# print the JSON string representation of the object
print(WhatsappUpdateTemplateRequest.to_json())
# convert the object into a dict
whatsapp_update_template_request_dict = whatsapp_update_template_request_instance.to_dict()
# create an instance of WhatsappUpdateTemplateRequest from a dict
whatsapp_update_template_request_from_dict = WhatsappUpdateTemplateRequest.from_dict(whatsapp_update_template_request_dict)