Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 867 Bytes

StreamDataData.md

File metadata and controls

28 lines (19 loc) · 867 Bytes

StreamDataData

Properties

Name Type Description Notes

Example

from waylay.services.rules.models.stream_data_data import StreamDataData

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

# convert the object into a dict
stream_data_data_dict = stream_data_data_instance.to_dict()
# create an instance of StreamDataData from a dict
stream_data_data_form_dict = stream_data_data.from_dict(stream_data_data_dict)

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