Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.05 KB

SpecificationList.md

File metadata and controls

30 lines (22 loc) · 1.05 KB

SpecificationList

The representation of a list of specifications.

Properties

Name Type Description Notes
results List[SpecificationReturn] [optional]
metadata object [optional]

Example

from neurosynth_compose_sdk.models.specification_list import SpecificationList

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

# convert the object into a dict
specification_list_dict = specification_list_instance.to_dict()
# create an instance of SpecificationList from a dict
specification_list_form_dict = specification_list.from_dict(specification_list_dict)

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