Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 918 Bytes

ImageList.md

File metadata and controls

29 lines (21 loc) · 918 Bytes

ImageList

Properties

Name Type Description Notes
results List[ImageReturn] [optional]
metadata Metadata [optional]

Example

from neurostore_sdk.models.image_list import ImageList

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

# convert the object into a dict
image_list_dict = image_list_instance.to_dict()
# create an instance of ImageList from a dict
image_list_form_dict = image_list.from_dict(image_list_dict)

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