Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

FailedEventSSE.md

File metadata and controls

31 lines (22 loc) · 1.06 KB

FailedEventSSE

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

Properties

Name Type Description Notes
event FailedEventSSEEvent
data JobEventResponseFailedEventData

Example

from waylay.services.registry.models.failed_event_sse import FailedEventSSE

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

# convert the object into a dict
failed_event_sse_dict = failed_event_sse_instance.to_dict()
# create an instance of FailedEventSSE from a dict
failed_event_sse_form_dict = failed_event_sse.from_dict(failed_event_sse_dict)

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