Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.04 KB

NoteCollectionBase.md

File metadata and controls

28 lines (20 loc) · 1.04 KB

NoteCollectionBase

Properties

Name Type Description Notes
note object The note will contain all note_keys as keys and have a value of either null or the value type specified in note_keys. [optional]

Example

from neurostore_sdk.models.note_collection_base import NoteCollectionBase

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

# convert the object into a dict
note_collection_base_dict = note_collection_base_instance.to_dict()
# create an instance of NoteCollectionBase from a dict
note_collection_base_form_dict = note_collection_base.from_dict(note_collection_base_dict)

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