Represents a HAL link.
Name | Type | Description | Notes |
---|---|---|---|
href | str | ||
method | str | [optional] | |
form_data | object | [optional] | |
headers | object | [optional] |
from waylay.services.storage.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)