Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 896 Bytes

Plug1.md

File metadata and controls

31 lines (22 loc) · 896 Bytes

Plug1

Properties

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

Example

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)

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