Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

WaitingEventSSE.md

File metadata and controls

31 lines (22 loc) · 1.08 KB

WaitingEventSSE

A message that notifies a state change in a background job.

Properties

Name Type Description Notes
event WaitingEventSSEEvent
data JobEventResponseWaitingEventData

Example

from waylay.services.registry.models.waiting_event_sse import WaitingEventSSE

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

# convert the object into a dict
waiting_event_sse_dict = waiting_event_sse_instance.to_dict()
# create an instance of WaitingEventSSE from a dict
waiting_event_sse_form_dict = waiting_event_sse.from_dict(waiting_event_sse_dict)

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