Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1 KB

StreamReady.md

File metadata and controls

31 lines (22 loc) · 1 KB

StreamReady

A message that acknowledges that the server will sent job state changes.

Properties

Name Type Description Notes
event EventAck
data str A text message acknowledging what events will be forwarded.

Example

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)

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