-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
82081959348e3cb21c36aad16900ef29b5c66cfa
- Loading branch information
1 parent
f8ac1ba
commit 0975071
Showing
22 changed files
with
967 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# BaseStudiesPost200Response | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**metadata** | **object** | | [optional] | ||
**versions** | [**BaseStudyVersions**](BaseStudyVersions.md) | | [optional] | ||
**name** | **str** | | [optional] | ||
**description** | **str** | | [optional] | ||
**publication** | **str** | | [optional] | ||
**doi** | **str** | | [optional] | ||
**pmid** | **str** | | [optional] | ||
**authors** | **str** | | [optional] | ||
**year** | **int** | | [optional] | ||
**level** | **str** | | [optional] | ||
**created_at** | **datetime** | time the resource was created on the database | [optional] [readonly] | ||
**updated_at** | **str** | when was the resource last modified/updated. | [optional] [readonly] | ||
**id** | **str** | short UUID specifying the location of this resource | [optional] | ||
**public** | **bool** | whether the resource is listed in public searches or not | [optional] [default to True] | ||
**user** | **str** | who owns the resource | [optional] [readonly] | ||
**username** | **str** | human readable username | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from neurostore_sdk.models.base_studies_post200_response import BaseStudiesPost200Response | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BaseStudiesPost200Response from a JSON string | ||
base_studies_post200_response_instance = BaseStudiesPost200Response.from_json(json) | ||
# print the JSON string representation of the object | ||
print BaseStudiesPost200Response.to_json() | ||
|
||
# convert the object into a dict | ||
base_studies_post200_response_dict = base_studies_post200_response_instance.to_dict() | ||
# create an instance of BaseStudiesPost200Response from a dict | ||
base_studies_post200_response_form_dict = base_studies_post200_response.from_dict(base_studies_post200_response_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# BaseStudiesPostRequest | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**metadata** | **object** | | [optional] | ||
**versions** | [**BaseStudyVersions**](BaseStudyVersions.md) | | [optional] | ||
**name** | **str** | | [optional] | ||
**description** | **str** | | [optional] | ||
**publication** | **str** | | [optional] | ||
**doi** | **str** | | [optional] | ||
**pmid** | **str** | | [optional] | ||
**authors** | **str** | | [optional] | ||
**year** | **int** | | [optional] | ||
**level** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from neurostore_sdk.models.base_studies_post_request import BaseStudiesPostRequest | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of BaseStudiesPostRequest from a JSON string | ||
base_studies_post_request_instance = BaseStudiesPostRequest.from_json(json) | ||
# print the JSON string representation of the object | ||
print BaseStudiesPostRequest.to_json() | ||
|
||
# convert the object into a dict | ||
base_studies_post_request_dict = base_studies_post_request_instance.to_dict() | ||
# create an instance of BaseStudiesPostRequest from a dict | ||
base_studies_post_request_form_dict = base_studies_post_request.from_dict(base_studies_post_request_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# StudyReturnAllOfStudysetsInner | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**name** | **str** | | [optional] | ||
**id** | **str** | | [optional] | ||
**description** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from neurostore_sdk.models.study_return_all_of_studysets_inner import StudyReturnAllOfStudysetsInner | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of StudyReturnAllOfStudysetsInner from a JSON string | ||
study_return_all_of_studysets_inner_instance = StudyReturnAllOfStudysetsInner.from_json(json) | ||
# print the JSON string representation of the object | ||
print StudyReturnAllOfStudysetsInner.to_json() | ||
|
||
# convert the object into a dict | ||
study_return_all_of_studysets_inner_dict = study_return_all_of_studysets_inner_instance.to_dict() | ||
# create an instance of StudyReturnAllOfStudysetsInner from a dict | ||
study_return_all_of_studysets_inner_form_dict = study_return_all_of_studysets_inner.from_dict(study_return_all_of_studysets_inner_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# StudyReturnAllOfStudysetsInnerOneOf | ||
|
||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**name** | **str** | | [optional] | ||
**id** | **str** | | [optional] | ||
**description** | **str** | | [optional] | ||
|
||
## Example | ||
|
||
```python | ||
from neurostore_sdk.models.study_return_all_of_studysets_inner_one_of import StudyReturnAllOfStudysetsInnerOneOf | ||
|
||
# TODO update the JSON string below | ||
json = "{}" | ||
# create an instance of StudyReturnAllOfStudysetsInnerOneOf from a JSON string | ||
study_return_all_of_studysets_inner_one_of_instance = StudyReturnAllOfStudysetsInnerOneOf.from_json(json) | ||
# print the JSON string representation of the object | ||
print StudyReturnAllOfStudysetsInnerOneOf.to_json() | ||
|
||
# convert the object into a dict | ||
study_return_all_of_studysets_inner_one_of_dict = study_return_all_of_studysets_inner_one_of_instance.to_dict() | ||
# create an instance of StudyReturnAllOfStudysetsInnerOneOf from a dict | ||
study_return_all_of_studysets_inner_one_of_form_dict = study_return_all_of_studysets_inner_one_of.from_dict(study_return_all_of_studysets_inner_one_of_dict) | ||
``` | ||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.