Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 909 Bytes

HALSelfLinks.md

File metadata and controls

29 lines (20 loc) · 909 Bytes

HALSelfLinks

Properties

Name Type Description Notes
links HALSelfLinksLinks

Example

from waylay.services.resources.models.hal_self_links import HALSelfLinks

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

# convert the object into a dict
hal_self_links_dict = hal_self_links_instance.to_dict()
# create an instance of HALSelfLinks from a dict
hal_self_links_form_dict = hal_self_links.from_dict(hal_self_links_dict)

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