Name |
Type |
Description |
Notes |
metadata |
object |
Metadata about image such as software and version used and other relevant data about how the image was produced. |
[optional] |
url |
str |
URL to image file. |
[optional] |
filename |
str |
Name of the image file. |
[optional] |
space |
str |
The template space the image is in (e.g., MNI |
[optional] |
value_type |
str |
The values the image represents. For example, T-statistic or Z-statistic, or Betas. |
[optional] |
add_date |
datetime |
Date the image was added. |
[optional] [readonly] |
analysis |
str |
|
[optional] |
entities |
List[Entity] |
|
[optional] |
analysis_name |
str |
|
[optional] |
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] |
from neurostore_sdk.models.image_request import ImageRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ImageRequest from a JSON string
image_request_instance = ImageRequest.from_json(json)
# print the JSON string representation of the object
print ImageRequest.to_json()
# convert the object into a dict
image_request_dict = image_request_instance.to_dict()
# create an instance of ImageRequest from a dict
image_request_form_dict = image_request.from_dict(image_request_dict)
[Back to Model list] [Back to API list] [Back to README]