Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 818 Bytes

HalLink.md

File metadata and controls

30 lines (21 loc) · 818 Bytes

HalLink

Properties

Name Type Description Notes
href str
name str

Example

from waylay.services.data.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]