Whatsapp component parameter.
| 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] |
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)