Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.38 KB

HALResourceEntityAllOfLinks.md

File metadata and controls

31 lines (22 loc) · 1.38 KB

HALResourceEntityAllOfLinks

Properties

Name Type Description Notes
parent HALResourceEntityAllOfLinksParent [optional]
children HALResourceEntityAllOfLinksChildren [optional]
resource_type HALResourceEntityAllOfLinksResourceType [optional]

Example

from waylay.services.resources.models.hal_resource_entity_all_of_links import HALResourceEntityAllOfLinks

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

# convert the object into a dict
hal_resource_entity_all_of_links_dict = hal_resource_entity_all_of_links_instance.to_dict()
# create an instance of HALResourceEntityAllOfLinks from a dict
hal_resource_entity_all_of_links_form_dict = hal_resource_entity_all_of_links.from_dict(hal_resource_entity_all_of_links_dict)

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