Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.44 KB

File metadata and controls

38 lines (29 loc) · 1.44 KB

WhatsAppParameter

Whatsapp component parameter.

Properties

Name Type Description Notes
type str Type of the parameter.
text str A text. [optional]
currency WhatsAppCurrency [optional]
date_time WhatsAppDatetime [optional]
image WhatsAppMedia [optional]
document WhatsAppMedia [optional]
video WhatsAppMedia [optional]
coupon_code str A coupon code. [optional]
payload str A payload. [optional]

Example

from messente_api.models.whats_app_parameter import WhatsAppParameter

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

# convert the object into a dict
whats_app_parameter_dict = whats_app_parameter_instance.to_dict()
# create an instance of WhatsAppParameter from a dict
whats_app_parameter_from_dict = WhatsAppParameter.from_dict(whats_app_parameter_dict)

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