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]
has_coordinates
bool
[optional]
has_images
bool
[optional]
has_z_maps
bool
[optional]
has_t_maps
bool
[optional]
has_beta_and_variance_maps
bool
[optional]
features
object
[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 objectprint(BaseStudiesPost200Response.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_from_dict=BaseStudiesPost200Response.from_dict(base_studies_post200_response_dict)