Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 898 Bytes

Webscript.md

File metadata and controls

30 lines (21 loc) · 898 Bytes

Webscript

Properties

Name Type Description Notes
event HALLinks [optional]
webscript HALLinks

Example

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)

[Back to Model list] [Back to API list] [Back to README]