Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

DiscussionChatV1200Response

Properties

Name Type Description Notes
event str [optional]
data str [optional]

Example

from eZmaxApi.models.discussion_chat_v1200_response import DiscussionChatV1200Response

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

# convert the object into a dict
discussion_chat_v1200_response_dict = discussion_chat_v1200_response_instance.to_dict()
# create an instance of DiscussionChatV1200Response from a dict
discussion_chat_v1200_response_from_dict = DiscussionChatV1200Response.from_dict(discussion_chat_v1200_response_dict)

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