Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1001 Bytes

WhatsAppLanguage.md

File metadata and controls

31 lines (22 loc) · 1001 Bytes

WhatsAppLanguage

Whatsapp template language

Properties

Name Type Description Notes
code str Language code
policy str Language policy [optional]

Example

from messente_api.models.whats_app_language import WhatsAppLanguage

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

# convert the object into a dict
whats_app_language_dict = whats_app_language_instance.to_dict()
# create an instance of WhatsAppLanguage from a dict
whats_app_language_from_dict = WhatsAppLanguage.from_dict(whats_app_language_dict)

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