Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

TableRequestRelationships

Properties

Name Type Description Notes
study str [optional]

Example

from neurostore_sdk.models.table_request_relationships import TableRequestRelationships

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

# convert the object into a dict
table_request_relationships_dict = table_request_relationships_instance.to_dict()
# create an instance of TableRequestRelationships from a dict
table_request_relationships_from_dict = TableRequestRelationships.from_dict(table_request_relationships_dict)

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