The payload of the event. The contents of this object depend on the type of event.
| Name | Type | Description | Notes |
|---|---|---|---|
| conversation | ConversationTruncated | The conversation in which the message was read. | [optional] |
| activity | ConversationReadEventAllOfPayloadActivity | [optional] |
from sunshine_conversations_client.model.conversation_read_event_all_of_payload import ConversationReadEventAllOfPayload
# TODO update the JSON string below
json = "{}"
# create an instance of ConversationReadEventAllOfPayload from a JSON string
conversation_read_event_all_of_payload_instance = ConversationReadEventAllOfPayload.from_json(json)
# print the JSON string representation of the object
print(ConversationReadEventAllOfPayload.to_json())
# convert the object into a dict
conversation_read_event_all_of_payload_dict = conversation_read_event_all_of_payload_instance.to_dict()
# create an instance of ConversationReadEventAllOfPayload from a dict
conversation_read_event_all_of_payload_from_dict = ConversationReadEventAllOfPayload.from_dict(conversation_read_event_all_of_payload_dict)