Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.31 KB

HALResourceEntityAllOfLinksResourceType.md

File metadata and controls

30 lines (21 loc) · 1.31 KB

HALResourceEntityAllOfLinksResourceType

Properties

Name Type Description Notes
href str (Relative) URL of the entity.
id str Unique identifier of the linked item

Example

from waylay.services.resources.models.hal_resource_entity_all_of_links_resource_type import HALResourceEntityAllOfLinksResourceType

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

# convert the object into a dict
hal_resource_entity_all_of_links_resource_type_dict = hal_resource_entity_all_of_links_resource_type_instance.to_dict()
# create an instance of HALResourceEntityAllOfLinksResourceType from a dict
hal_resource_entity_all_of_links_resource_type_form_dict = hal_resource_entity_all_of_links_resource_type.from_dict(hal_resource_entity_all_of_links_resource_type_dict)

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