A message that acknowledges that the server will sent job state changes.
Name | Type | Description | Notes |
---|---|---|---|
event | EventAck | ||
data | str | A text message acknowledging what events will be forwarded. |
from waylay.services.registry.models.stream_ready import StreamReady
# TODO update the JSON string below
json = "{}"
# create an instance of StreamReady from a JSON string
stream_ready_instance = StreamReady.from_json(json)
# print the JSON string representation of the object
print StreamReady.to_json()
# convert the object into a dict
stream_ready_dict = stream_ready_instance.to_dict()
# create an instance of StreamReady from a dict
stream_ready_form_dict = stream_ready.from_dict(stream_ready_dict)