Name | Type | Description | Notes |
---|---|---|---|
results | List[PointReturn] | [optional] | |
metadata | Metadata | [optional] |
from neurostore_sdk.models.point_list import PointList
# TODO update the JSON string below
json = "{}"
# create an instance of PointList from a JSON string
point_list_instance = PointList.from_json(json)
# print the JSON string representation of the object
print PointList.to_json()
# convert the object into a dict
point_list_dict = point_list_instance.to_dict()
# create an instance of PointList from a dict
point_list_form_dict = point_list.from_dict(point_list_dict)