Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.15 KB

MetaAnalysesGet400Response.md

File metadata and controls

31 lines (23 loc) · 1.15 KB

MetaAnalysesGet400Response

Properties

Name Type Description Notes
detail str [optional]
status int [optional]
title str [optional]
type str [optional]

Example

from neurosynth_compose_sdk.models.meta_analyses_get400_response import MetaAnalysesGet400Response

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

# convert the object into a dict
meta_analyses_get400_response_dict = meta_analyses_get400_response_instance.to_dict()
# create an instance of MetaAnalysesGet400Response from a dict
meta_analyses_get400_response_form_dict = meta_analyses_get400_response.from_dict(meta_analyses_get400_response_dict)

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