Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.15 KB

AnnotationRequestRelationships.md

File metadata and controls

28 lines (20 loc) · 1.15 KB

AnnotationRequestRelationships

Properties

Name Type Description Notes
notes AnnotationRequestRelationshipsNotes [optional]

Example

from neurostore_sdk.models.annotation_request_relationships import AnnotationRequestRelationships

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

# convert the object into a dict
annotation_request_relationships_dict = annotation_request_relationships_instance.to_dict()
# create an instance of AnnotationRequestRelationships from a dict
annotation_request_relationships_form_dict = annotation_request_relationships.from_dict(annotation_request_relationships_dict)

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