Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.48 KB

File metadata and controls

31 lines (22 loc) · 1.48 KB

ConversationTypingEventAllOfPayload

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 activity was sent. [optional]
activity ConversationTypingEventAllOfPayloadActivity [optional]

Example

from sunshine_conversations_client.model.conversation_typing_event_all_of_payload import ConversationTypingEventAllOfPayload

# TODO update the JSON string below
json = "{}"
# create an instance of ConversationTypingEventAllOfPayload from a JSON string
conversation_typing_event_all_of_payload_instance = ConversationTypingEventAllOfPayload.from_json(json)
# print the JSON string representation of the object
print(ConversationTypingEventAllOfPayload.to_json())

# convert the object into a dict
conversation_typing_event_all_of_payload_dict = conversation_typing_event_all_of_payload_instance.to_dict()
# create an instance of ConversationTypingEventAllOfPayload from a dict
conversation_typing_event_all_of_payload_from_dict = ConversationTypingEventAllOfPayload.from_dict(conversation_typing_event_all_of_payload_dict)

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