Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 928 Bytes

ResultList.md

File metadata and controls

29 lines (21 loc) · 928 Bytes

ResultList

Properties

Name Type Description Notes
results ResultListResults [optional]
metadata object [optional]

Example

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_form_dict = result_list.from_dict(result_list_dict)

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