Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.1 KB

AnnotationReturnRelationshipsNotes.md

File metadata and controls

27 lines (19 loc) · 1.1 KB

AnnotationReturnRelationshipsNotes

Properties

Name Type Description Notes

Example

from neurostore_sdk.models.annotation_return_relationships_notes import AnnotationReturnRelationshipsNotes

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

# convert the object into a dict
annotation_return_relationships_notes_dict = annotation_return_relationships_notes_instance.to_dict()
# create an instance of AnnotationReturnRelationshipsNotes from a dict
annotation_return_relationships_notes_form_dict = annotation_return_relationships_notes.from_dict(annotation_return_relationships_notes_dict)

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