Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 839 Bytes

Plug2.md

File metadata and controls

30 lines (21 loc) · 839 Bytes

Plug2

Properties

Name Type Description Notes
job HALLinks [optional]
plug HALLinks

Example

from waylay.services.registry.models.plug2 import Plug2

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

# convert the object into a dict
plug2_dict = plug2_instance.to_dict()
# create an instance of Plug2 from a dict
plug2_form_dict = plug2.from_dict(plug2_dict)

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