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