Event data stored only in the Message Cache.
Name | Type | Description | Notes |
---|
from waylay.services.data.models.object_data import ObjectData
# TODO update the JSON string below
json = "{}"
# create an instance of ObjectData from a JSON string
object_data_instance = ObjectData.from_json(json)
# print the JSON string representation of the object
print ObjectData.to_json()
# convert the object into a dict
object_data_dict = object_data_instance.to_dict()
# create an instance of ObjectData from a dict
object_data_form_dict = object_data.from_dict(object_data_dict)