Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.04 KB

NoteCollectionList.md

File metadata and controls

29 lines (21 loc) · 1.04 KB

NoteCollectionList

Properties

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

Example

from neurostore_sdk.models.note_collection_list import NoteCollectionList

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

# convert the object into a dict
note_collection_list_dict = note_collection_list_instance.to_dict()
# create an instance of NoteCollectionList from a dict
note_collection_list_form_dict = note_collection_list.from_dict(note_collection_list_dict)

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