Read-only image fields that are withheld unless a request asks for them by name.
| Name | Type | Description | Notes |
|---|---|---|---|
| value_summary | ImageValueSummary | [optional] |
from neurostore_sdk.models.image_detail import ImageDetail
# TODO update the JSON string below
json = "{}"
# create an instance of ImageDetail from a JSON string
image_detail_instance = ImageDetail.from_json(json)
# print the JSON string representation of the object
print(ImageDetail.to_json())
# convert the object into a dict
image_detail_dict = image_detail_instance.to_dict()
# create an instance of ImageDetail from a dict
image_detail_from_dict = ImageDetail.from_dict(image_detail_dict)