Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

EventTEXTMESSAGEEND

Properties

Name Type Description Notes
data SseEventTextMessageEndData
event str The event name.
id int The event ID. [optional]
retry int The retry time in milliseconds. [optional]

Example

from revengai.models.event_textmessageend import EventTEXTMESSAGEEND

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

# convert the object into a dict
event_textmessageend_dict = event_textmessageend_instance.to_dict()
# create an instance of EventTEXTMESSAGEEND from a dict
event_textmessageend_from_dict = EventTEXTMESSAGEEND.from_dict(event_textmessageend_dict)

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