Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

MessageOverrideWhatsapp

Properties

Name Type Description Notes
whatsapp MessageOverridePayload [optional]

Example

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)

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