Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

File metadata and controls

29 lines (20 loc) · 1.02 KB

MessageOverrideApple

Properties

Name Type Description Notes
apple AppleMessageOverridePayload [optional]

Example

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)

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