Name | Type | Description | Notes |
---|---|---|---|
event | HALLinks | [optional] | |
plug | HALLinks |
from waylay.services.registry.models.plug import Plug
# TODO update the JSON string below
json = "{}"
# create an instance of Plug from a JSON string
plug_instance = Plug.from_json(json)
# print the JSON string representation of the object
print Plug.to_json()
# convert the object into a dict
plug_dict = plug_instance.to_dict()
# create an instance of Plug from a dict
plug_form_dict = plug.from_dict(plug_dict)