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