Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.29 KB

GetPlugResponseV2Links.md

File metadata and controls

33 lines (24 loc) · 1.29 KB

GetPlugResponseV2Links

HAL links to related jobs and plugs

Properties

Name Type Description Notes
content HALLink [optional]
draft AltVersionHALLinkDraft [optional]
published AltVersionHALLinkPublished [optional]
jobs HALLink [optional]

Example

from waylay.services.registry.models.get_plug_response_v2_links import GetPlugResponseV2Links

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

# convert the object into a dict
get_plug_response_v2_links_dict = get_plug_response_v2_links_instance.to_dict()
# create an instance of GetPlugResponseV2Links from a dict
get_plug_response_v2_links_form_dict = get_plug_response_v2_links.from_dict(get_plug_response_v2_links_dict)

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