Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 853 Bytes

ImageCommon.md

File metadata and controls

28 lines (20 loc) · 853 Bytes

ImageCommon

Properties

Name Type Description Notes
analysis str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]