Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

ActiveEventSSE.md

File metadata and controls

31 lines (22 loc) · 1.06 KB

ActiveEventSSE

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

Properties

Name Type Description Notes
event ActiveEventSSEEvent
data JobEventResponseActiveEventData

Example

from waylay.services.registry.models.active_event_sse import ActiveEventSSE

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

# convert the object into a dict
active_event_sse_dict = active_event_sse_instance.to_dict()
# create an instance of ActiveEventSSE from a dict
active_event_sse_form_dict = active_event_sse.from_dict(active_event_sse_dict)

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