Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

GetPlugResponseV2Links.md

File metadata and controls

32 lines (23 loc) · 1.25 KB

GetPlugResponseV2Links

HAL links to related jobs and plugs

Properties

Name Type Description Notes
draft GetPlugResponseV2LinksDraft [optional]
published GetPlugResponseV2LinksPublished [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]