Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.25 KB

File metadata and controls

31 lines (22 loc) · 1.25 KB

WhatsappListTemplatesResponse

Whatsapp Cloud API list of templates response

Properties

Name Type Description Notes
templates List[WhatsappTemplateResponse] List of templates
paging WhatsappPagination

Example

from messente_api.models.whatsapp_list_templates_response import WhatsappListTemplatesResponse

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

# convert the object into a dict
whatsapp_list_templates_response_dict = whatsapp_list_templates_response_instance.to_dict()
# create an instance of WhatsappListTemplatesResponse from a dict
whatsapp_list_templates_response_from_dict = WhatsappListTemplatesResponse.from_dict(whatsapp_list_templates_response_dict)

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