You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromneurostore_sdk.models.base_studies_post200_responseimportBaseStudiesPost200Response# TODO update the JSON string belowjson="{}"# create an instance of BaseStudiesPost200Response from a JSON stringbase_studies_post200_response_instance=BaseStudiesPost200Response.from_json(json)
# print the JSON string representation of the objectprintBaseStudiesPost200Response.to_json()
# convert the object into a dictbase_studies_post200_response_dict=base_studies_post200_response_instance.to_dict()
# create an instance of BaseStudiesPost200Response from a dictbase_studies_post200_response_form_dict=base_studies_post200_response.from_dict(base_studies_post200_response_dict)