Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.19 KB

HALResourceListingAllOfEmbedded.md

File metadata and controls

29 lines (20 loc) · 1.19 KB

HALResourceListingAllOfEmbedded

Properties

Name Type Description Notes
values List[HALResourceEntity] Resource entities in HAL format

Example

from waylay.services.resources.models.hal_resource_listing_all_of_embedded import HALResourceListingAllOfEmbedded

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

# convert the object into a dict
hal_resource_listing_all_of_embedded_dict = hal_resource_listing_all_of_embedded_instance.to_dict()
# create an instance of HALResourceListingAllOfEmbedded from a dict
hal_resource_listing_all_of_embedded_form_dict = hal_resource_listing_all_of_embedded.from_dict(hal_resource_listing_all_of_embedded_dict)

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