Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

KeepAliveEventSSE.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

KeepAliveEventSSE

A message that acknowledges that the stream is still alive.

Properties

Name Type Description Notes
event EventKeepAlive
data str A text message acknowledging that events will be forwarded. [optional]

Example

from waylay.services.registry.models.keep_alive_event_sse import KeepAliveEventSSE

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

# convert the object into a dict
keep_alive_event_sse_dict = keep_alive_event_sse_instance.to_dict()
# create an instance of KeepAliveEventSSE from a dict
keep_alive_event_sse_form_dict = keep_alive_event_sse.from_dict(keep_alive_event_sse_dict)

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