Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

HALSelfLinksLinksSelf.md

File metadata and controls

29 lines (20 loc) · 1.01 KB

HALSelfLinksLinksSelf

Properties

Name Type Description Notes
href str (Relative) URL of the entity.

Example

from waylay.services.resources.models.hal_self_links_links_self import HALSelfLinksLinksSelf

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

# convert the object into a dict
hal_self_links_links_self_dict = hal_self_links_links_self_instance.to_dict()
# create an instance of HALSelfLinksLinksSelf from a dict
hal_self_links_links_self_form_dict = hal_self_links_links_self.from_dict(hal_self_links_links_self_dict)

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