Skip to content

Commit ac0f89f

Browse files
463185e6f3170561138d05f464f298ad01250a27
1 parent 9be33f0 commit ac0f89f

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/StudiesApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ with neurostore_sdk.ApiClient(configuration) as api_client:
5757
name = "name_example" # str | search the name field for a term (optional)
5858
description = "description_example" # str | search description field for a term (optional)
5959
source_id = "1234567890ab" # str | id of the resource you are either filtering/copying on (optional)
60-
unique = True # bool | whether to list clones with originals (optional)
60+
unique = None # bool, date, datetime, dict, float, int, list, str, none_type | whether to list clones with originals (optional)
6161
source = "neurostore" # str | the source of the resource you would like to filter/copy from (optional) if omitted the server will use the default value of "neurostore"
6262
authors = "authors_example" # str | search authors (optional)
6363
user_id = "user_id_example" # str | user id you want to filter by (optional)
@@ -88,7 +88,7 @@ Name | Type | Description | Notes
8888
**name** | **str**| search the name field for a term | [optional]
8989
**description** | **str**| search description field for a term | [optional]
9090
**source_id** | **str**| id of the resource you are either filtering/copying on | [optional]
91-
**unique** | **bool**| whether to list clones with originals | [optional]
91+
**unique** | **bool, date, datetime, dict, float, int, list, str, none_type**| whether to list clones with originals | [optional]
9292
**source** | **str**| the source of the resource you would like to filter/copy from | [optional] if omitted the server will use the default value of "neurostore"
9393
**authors** | **str**| search authors | [optional]
9494
**user_id** | **str**| user id you want to filter by | [optional]

docs/StudysetsApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ with neurostore_sdk.ApiClient(configuration) as api_client:
5757
name = "name_example" # str | search the name field for a term (optional)
5858
description = "description_example" # str | search description field for a term (optional)
5959
source_id = "1234567890ab" # str | id of the resource you are either filtering/copying on (optional)
60-
unique = True # bool | whether to list clones with originals (optional)
60+
unique = None # bool, date, datetime, dict, float, int, list, str, none_type | whether to list clones with originals (optional)
6161
source = "neurostore" # str | the source of the resource you would like to filter/copy from (optional) if omitted the server will use the default value of "neurostore"
6262
authors = "authors_example" # str | search authors (optional)
6363
user_id = "user_id_example" # str | user id you want to filter by (optional)
@@ -86,7 +86,7 @@ Name | Type | Description | Notes
8686
**name** | **str**| search the name field for a term | [optional]
8787
**description** | **str**| search description field for a term | [optional]
8888
**source_id** | **str**| id of the resource you are either filtering/copying on | [optional]
89-
**unique** | **bool**| whether to list clones with originals | [optional]
89+
**unique** | **bool, date, datetime, dict, float, int, list, str, none_type**| whether to list clones with originals | [optional]
9090
**source** | **str**| the source of the resource you would like to filter/copy from | [optional] if omitted the server will use the default value of "neurostore"
9191
**authors** | **str**| search authors | [optional]
9292
**user_id** | **str**| user id you want to filter by | [optional]

neurostore_sdk/api/studies_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def __init__(self, api_client):
132132
'source_id':
133133
(str,),
134134
'unique':
135-
(bool,),
135+
(bool, date, datetime, dict, float, int, list, str, none_type,),
136136
'source':
137137
(str,),
138138
'authors':
@@ -448,7 +448,7 @@ def get(
448448
name (str): search the name field for a term. [optional]
449449
description (str): search description field for a term. [optional]
450450
source_id (str): id of the resource you are either filtering/copying on. [optional]
451-
unique (bool): whether to list clones with originals. [optional]
451+
unique (bool, date, datetime, dict, float, int, list, str, none_type): whether to list clones with originals. [optional]
452452
source (str): the source of the resource you would like to filter/copy from. [optional] if omitted the server will use the default value of "neurostore"
453453
authors (str): search authors. [optional]
454454
user_id (str): user id you want to filter by. [optional]

neurostore_sdk/api/studysets_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def __init__(self, api_client):
123123
'source_id':
124124
(str,),
125125
'unique':
126-
(bool,),
126+
(bool, date, datetime, dict, float, int, list, str, none_type,),
127127
'source':
128128
(str,),
129129
'authors':
@@ -407,7 +407,7 @@ def get(
407407
name (str): search the name field for a term. [optional]
408408
description (str): search description field for a term. [optional]
409409
source_id (str): id of the resource you are either filtering/copying on. [optional]
410-
unique (bool): whether to list clones with originals. [optional]
410+
unique (bool, date, datetime, dict, float, int, list, str, none_type): whether to list clones with originals. [optional]
411411
source (str): the source of the resource you would like to filter/copy from. [optional] if omitted the server will use the default value of "neurostore"
412412
authors (str): search authors. [optional]
413413
user_id (str): user id you want to filter by. [optional]

0 commit comments

Comments
 (0)