Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 828 Bytes

Plug.md

File metadata and controls

30 lines (21 loc) · 828 Bytes

Plug

Properties

Name Type Description Notes
event HALLinks [optional]
plug HALLinks

Example

from waylay.services.registry.models.plug import Plug

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

# convert the object into a dict
plug_dict = plug_instance.to_dict()
# create an instance of Plug from a dict
plug_form_dict = plug.from_dict(plug_dict)

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