Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 882 Bytes

HALLinks.md

File metadata and controls

30 lines (21 loc) · 882 Bytes

HALLinks

One or more links of the same HAL collection.

Properties

Name Type Description Notes
href HALLinkHref

Example

from waylay.services.registry.models.hal_links import HALLinks

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

# convert the object into a dict
hal_links_dict = hal_links_instance.to_dict()
# create an instance of HALLinks from a dict
hal_links_form_dict = hal_links.from_dict(hal_links_dict)

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