Name | Type | Description | Notes |
---|---|---|---|
results | List[ImageReturn] | [optional] | |
metadata | Metadata | [optional] |
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)