Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 920 Bytes

StreamData.md

File metadata and controls

30 lines (21 loc) · 920 Bytes

StreamData

Properties

Name Type Description Notes
resource str Unique resource identifier
data StreamDataData

Example

from waylay.services.rules.models.stream_data import StreamData

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

# convert the object into a dict
stream_data_dict = stream_data_instance.to_dict()
# create an instance of StreamData from a dict
stream_data_form_dict = stream_data.from_dict(stream_data_dict)

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