Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 919 Bytes

File metadata and controls

30 lines (21 loc) · 919 Bytes

TableList

Properties

Name Type Description Notes
results List[TableReturn] [optional]
metadata Metadata [optional]

Example

from neurostore_sdk.models.table_list import TableList

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

# convert the object into a dict
table_list_dict = table_list_instance.to_dict()
# create an instance of TableList from a dict
table_list_from_dict = TableList.from_dict(table_list_dict)

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