| Name | Type | Description | Notes |
|---|---|---|---|
| apple | AppleMessageOverridePayload | [optional] |
from sunshine_conversations_client.model.message_override_apple import MessageOverrideApple
# TODO update the JSON string below
json = "{}"
# create an instance of MessageOverrideApple from a JSON string
message_override_apple_instance = MessageOverrideApple.from_json(json)
# print the JSON string representation of the object
print(MessageOverrideApple.to_json())
# convert the object into a dict
message_override_apple_dict = message_override_apple_instance.to_dict()
# create an instance of MessageOverrideApple from a dict
message_override_apple_from_dict = MessageOverrideApple.from_dict(message_override_apple_dict)