Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.43 KB

NoteCollectionReturnAllOf.md

File metadata and controls

36 lines (28 loc) · 1.43 KB

NoteCollectionReturnAllOf

Properties

Name Type Description Notes
analysis str [optional] [readonly]
analysis_name str [optional] [readonly]
study str [optional] [readonly]
study_name str [optional] [readonly]
annotation str [optional] [readonly]
study_year int [optional] [readonly]
publication str [optional] [readonly]
authors str [optional] [readonly]
id str [optional]

Example

from neurostore_sdk.models.note_collection_return_all_of import NoteCollectionReturnAllOf

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

# convert the object into a dict
note_collection_return_all_of_dict = note_collection_return_all_of_instance.to_dict()
# create an instance of NoteCollectionReturnAllOf from a dict
note_collection_return_all_of_form_dict = note_collection_return_all_of.from_dict(note_collection_return_all_of_dict)

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