Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

EventTEXTMESSAGESTART

Properties

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

Example

from revengai.models.event_textmessagestart import EventTEXTMESSAGESTART

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

# convert the object into a dict
event_textmessagestart_dict = event_textmessagestart_instance.to_dict()
# create an instance of EventTEXTMESSAGESTART from a dict
event_textmessagestart_from_dict = EventTEXTMESSAGESTART.from_dict(event_textmessagestart_dict)

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