Skip to content

Commit

Permalink
7f644854df134bf216ea55407764e8be0723b30c
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 29, 2024
1 parent f6120f8 commit ba1eb65
Show file tree
Hide file tree
Showing 8 changed files with 108 additions and 48 deletions.
12 changes: 8 additions & 4 deletions docs/ComposeApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **meta_analyses_get**
> MetaAnalysisList meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
> MetaAnalysisList meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
GET a list of meta-analyses

Expand Down Expand Up @@ -369,10 +369,11 @@ with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
search = 'imagin' # str | search for entries that contain the substring (optional)
description = 'description_example' # str | search description field for a term (optional)
sort = 'created_at' # str | Parameter to sort results on (optional) (default to 'created_at')
desc = True # bool | sort results by descending order (as opposed to ascending order) (optional)

try:
# GET a list of meta-analyses
api_response = api_instance.meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
api_response = api_instance.meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
print("The response of ComposeApi->meta_analyses_get:\n")
pprint(api_response)
except Exception as e:
Expand All @@ -392,6 +393,7 @@ Name | Type | Description | Notes
**search** | **str**| search for entries that contain the substring | [optional]
**description** | **str**| search description field for a term | [optional]
**sort** | **str**| Parameter to sort results on | [optional] [default to 'created_at']
**desc** | **bool**| sort results by descending order (as opposed to ascending order) | [optional]

### Return type

Expand Down Expand Up @@ -1498,7 +1500,7 @@ Name | Type | Description | Notes
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **projects_get**
> ProjectList projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
> ProjectList projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
Your GET endpoint

Expand Down Expand Up @@ -1539,10 +1541,11 @@ with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
search = 'imagin' # str | search for entries that contain the substring (optional)
description = 'description_example' # str | search description field for a term (optional)
sort = 'created_at' # str | Parameter to sort results on (optional) (default to 'created_at')
desc = True # bool | sort results by descending order (as opposed to ascending order) (optional)

try:
# Your GET endpoint
api_response = api_instance.projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
api_response = api_instance.projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
print("The response of ComposeApi->projects_get:\n")
pprint(api_response)
except Exception as e:
Expand All @@ -1560,6 +1563,7 @@ Name | Type | Description | Notes
**search** | **str**| search for entries that contain the substring | [optional]
**description** | **str**| search description field for a term | [optional]
**sort** | **str**| Parameter to sort results on | [optional] [default to 'created_at']
**desc** | **bool**| sort results by descending order (as opposed to ascending order) | [optional]

### Return type

Expand Down
12 changes: 8 additions & 4 deletions docs/GetApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ No authorization required
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **meta_analyses_get**
> MetaAnalysisList meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
> MetaAnalysisList meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
GET a list of meta-analyses

Expand Down Expand Up @@ -189,10 +189,11 @@ with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
search = 'imagin' # str | search for entries that contain the substring (optional)
description = 'description_example' # str | search description field for a term (optional)
sort = 'created_at' # str | Parameter to sort results on (optional) (default to 'created_at')
desc = True # bool | sort results by descending order (as opposed to ascending order) (optional)

try:
# GET a list of meta-analyses
api_response = api_instance.meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
api_response = api_instance.meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
print("The response of GetApi->meta_analyses_get:\n")
pprint(api_response)
except Exception as e:
Expand All @@ -212,6 +213,7 @@ Name | Type | Description | Notes
**search** | **str**| search for entries that contain the substring | [optional]
**description** | **str**| search description field for a term | [optional]
**sort** | **str**| Parameter to sort results on | [optional] [default to 'created_at']
**desc** | **bool**| sort results by descending order (as opposed to ascending order) | [optional]

### Return type

Expand Down Expand Up @@ -678,7 +680,7 @@ No authorization required
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)

# **projects_get**
> ProjectList projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
> ProjectList projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
Your GET endpoint

Expand Down Expand Up @@ -719,10 +721,11 @@ with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
search = 'imagin' # str | search for entries that contain the substring (optional)
description = 'description_example' # str | search description field for a term (optional)
sort = 'created_at' # str | Parameter to sort results on (optional) (default to 'created_at')
desc = True # bool | sort results by descending order (as opposed to ascending order) (optional)

try:
# Your GET endpoint
api_response = api_instance.projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
api_response = api_instance.projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
print("The response of GetApi->projects_get:\n")
pprint(api_response)
except Exception as e:
Expand All @@ -740,6 +743,7 @@ Name | Type | Description | Notes
**search** | **str**| search for entries that contain the substring | [optional]
**description** | **str**| search description field for a term | [optional]
**sort** | **str**| Parameter to sort results on | [optional] [default to 'created_at']
**desc** | **bool**| sort results by descending order (as opposed to ascending order) | [optional]

### Return type

Expand Down
6 changes: 4 additions & 2 deletions docs/MetaAnalysesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Method | HTTP request | Description


# **meta_analyses_get**
> MetaAnalysisList meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
> MetaAnalysisList meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
GET a list of meta-analyses

Expand Down Expand Up @@ -50,10 +50,11 @@ with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
search = 'imagin' # str | search for entries that contain the substring (optional)
description = 'description_example' # str | search description field for a term (optional)
sort = 'created_at' # str | Parameter to sort results on (optional) (default to 'created_at')
desc = True # bool | sort results by descending order (as opposed to ascending order) (optional)

try:
# GET a list of meta-analyses
api_response = api_instance.meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
api_response = api_instance.meta_analyses_get(nested=nested, ids=ids, page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
print("The response of MetaAnalysesApi->meta_analyses_get:\n")
pprint(api_response)
except Exception as e:
Expand All @@ -73,6 +74,7 @@ Name | Type | Description | Notes
**search** | **str**| search for entries that contain the substring | [optional]
**description** | **str**| search description field for a term | [optional]
**sort** | **str**| Parameter to sort results on | [optional] [default to 'created_at']
**desc** | **bool**| sort results by descending order (as opposed to ascending order) | [optional]

### Return type

Expand Down
6 changes: 4 additions & 2 deletions docs/ProjectsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Method | HTTP request | Description


# **projects_get**
> ProjectList projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
> ProjectList projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
Your GET endpoint

Expand Down Expand Up @@ -53,10 +53,11 @@ with neurosynth_compose_sdk.ApiClient(configuration) as api_client:
search = 'imagin' # str | search for entries that contain the substring (optional)
description = 'description_example' # str | search description field for a term (optional)
sort = 'created_at' # str | Parameter to sort results on (optional) (default to 'created_at')
desc = True # bool | sort results by descending order (as opposed to ascending order) (optional)

try:
# Your GET endpoint
api_response = api_instance.projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort)
api_response = api_instance.projects_get(page=page, page_size=page_size, name=name, search=search, description=description, sort=sort, desc=desc)
print("The response of ProjectsApi->projects_get:\n")
pprint(api_response)
except Exception as e:
Expand All @@ -74,6 +75,7 @@ Name | Type | Description | Notes
**search** | **str**| search for entries that contain the substring | [optional]
**description** | **str**| search description field for a term | [optional]
**sort** | **str**| Parameter to sort results on | [optional] [default to 'created_at']
**desc** | **bool**| sort results by descending order (as opposed to ascending order) | [optional]

### Return type

Expand Down
Loading

0 comments on commit ba1eb65

Please sign in to comment.