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