Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 831 Bytes

HALLinkHref.md

File metadata and controls

28 lines (19 loc) · 831 Bytes

HALLinkHref

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.hal_link_href import HALLinkHref

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

# convert the object into a dict
hal_link_href_dict = hal_link_href_instance.to_dict()
# create an instance of HALLinkHref from a dict
hal_link_href_form_dict = hal_link_href.from_dict(hal_link_href_dict)

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