from waylay.services.registry.models.job_event_sse import JobEventSSE
# TODO update the JSON string below
json = "{}"
# create an instance of JobEventSSE from a JSON string
job_event_sse_instance = JobEventSSE.from_json(json)
# print the JSON string representation of the object
print JobEventSSE.to_json()
# convert the object into a dict
job_event_sse_dict = job_event_sse_instance.to_dict()
# create an instance of JobEventSSE from a dict
job_event_sse_form_dict = job_event_sse.from_dict(job_event_sse_dict)
[Back to Model list] [Back to API list] [Back to README]