Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 966 Bytes

Webscript1.md

File metadata and controls

31 lines (22 loc) · 966 Bytes

Webscript1

Properties

Name Type Description Notes
event HALLinks [optional]
job HALLinks [optional]
webscript HALLinks

Example

from waylay.services.registry.models.webscript1 import Webscript1

# TODO update the JSON string below
json = "{}"
# create an instance of Webscript1 from a JSON string
webscript1_instance = Webscript1.from_json(json)
# print the JSON string representation of the object
print Webscript1.to_json()

# convert the object into a dict
webscript1_dict = webscript1_instance.to_dict()
# create an instance of Webscript1 from a dict
webscript1_form_dict = webscript1.from_dict(webscript1_dict)

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