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 user was removed. | [optional] |
| user | UserTruncated | The user that left the conversation. | [optional] |
from sunshine_conversations_client.model.conversation_leave_event_all_of_payload import ConversationLeaveEventAllOfPayload
# TODO update the JSON string below
json = "{}"
# create an instance of ConversationLeaveEventAllOfPayload from a JSON string
conversation_leave_event_all_of_payload_instance = ConversationLeaveEventAllOfPayload.from_json(json)
# print the JSON string representation of the object
print(ConversationLeaveEventAllOfPayload.to_json())
# convert the object into a dict
conversation_leave_event_all_of_payload_dict = conversation_leave_event_all_of_payload_instance.to_dict()
# create an instance of ConversationLeaveEventAllOfPayload from a dict
conversation_leave_event_all_of_payload_from_dict = ConversationLeaveEventAllOfPayload.from_dict(conversation_leave_event_all_of_payload_dict)