Name | Type | Description | Notes |
---|---|---|---|
results | ResultListResults | [optional] | |
metadata | object | [optional] |
from neurosynth_compose_sdk.models.result_list import ResultList
# TODO update the JSON string below
json = "{}"
# create an instance of ResultList from a JSON string
result_list_instance = ResultList.from_json(json)
# print the JSON string representation of the object
print(ResultList.to_json())
# convert the object into a dict
result_list_dict = result_list_instance.to_dict()
# create an instance of ResultList from a dict
result_list_from_dict = ResultList.from_dict(result_list_dict)