Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 823 Bytes

HALLink.md

File metadata and controls

29 lines (20 loc) · 823 Bytes

HALLink

Properties

Name Type Description Notes
href HALLinkHref

Example

from waylay.services.registry.models.hal_link import HALLink

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

# convert the object into a dict
hal_link_dict = hal_link_instance.to_dict()
# create an instance of HALLink from a dict
hal_link_form_dict = hal_link.from_dict(hal_link_dict)

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