Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 919 Bytes

PointList.md

File metadata and controls

30 lines (21 loc) · 919 Bytes

PointList

Properties

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

Example

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_from_dict = PointList.from_dict(point_list_dict)

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