| Name | Type | Description | Notes |
|---|---|---|---|
| MessageOverridePayload | [optional] |
from sunshine_conversations_client.model.message_override_whatsapp import MessageOverrideWhatsapp
# TODO update the JSON string below
json = "{}"
# create an instance of MessageOverrideWhatsapp from a JSON string
message_override_whatsapp_instance = MessageOverrideWhatsapp.from_json(json)
# print the JSON string representation of the object
print(MessageOverrideWhatsapp.to_json())
# convert the object into a dict
message_override_whatsapp_dict = message_override_whatsapp_instance.to_dict()
# create an instance of MessageOverrideWhatsapp from a dict
message_override_whatsapp_from_dict = MessageOverrideWhatsapp.from_dict(message_override_whatsapp_dict)