Name | Type | Description | Notes |
---|---|---|---|
analysis | str | [optional] |
from neurostore_sdk.models.image_common import ImageCommon
# TODO update the JSON string below
json = "{}"
# create an instance of ImageCommon from a JSON string
image_common_instance = ImageCommon.from_json(json)
# print the JSON string representation of the object
print ImageCommon.to_json()
# convert the object into a dict
image_common_dict = image_common_instance.to_dict()
# create an instance of ImageCommon from a dict
image_common_form_dict = image_common.from_dict(image_common_dict)