Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.45 KB

File metadata and controls

31 lines (22 loc) · 1.45 KB

ConversationReadEventAllOfPayload

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 message was read. [optional]
activity ConversationReadEventAllOfPayloadActivity [optional]

Example

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)

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