Name | Type | Description | Notes |
---|
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)