Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.44 KB

File metadata and controls

31 lines (22 loc) · 1.44 KB

ConversationLeaveEventAllOfPayload

The payload of the event. The contents of this object depend on the type of event.

Properties

Name Type Description Notes
conversation ConversationTruncated The conversation in which the user was removed. [optional]
user UserTruncated The user that left the conversation. [optional]

Example

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)

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