attributes common between request and return objects
| Name | Type | Description | Notes |
|---|---|---|---|
| study | str | [optional] | |
| table_id | str | [optional] | |
| entities | List[Entity] | [optional] | |
| order | int | [optional] | |
| metadata | object | [optional] |
from neurostore_sdk.models.analysis_common import AnalysisCommon
# TODO update the JSON string below
json = "{}"
# create an instance of AnalysisCommon from a JSON string
analysis_common_instance = AnalysisCommon.from_json(json)
# print the JSON string representation of the object
print(AnalysisCommon.to_json())
# convert the object into a dict
analysis_common_dict = analysis_common_instance.to_dict()
# create an instance of AnalysisCommon from a dict
analysis_common_from_dict = AnalysisCommon.from_dict(analysis_common_dict)