A message that notifies a state change in a background job.
Name | Type | Description | Notes |
---|---|---|---|
event | FailedEventSSEEvent | ||
data | JobEventResponseFailedEventData |
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)