| Name | Type | Description | Notes |
|---|---|---|---|
| size | ISize | [optional] | |
| extent | Extent | [optional] | |
| version | Version | [optional] | |
| preview | GIFImage | [optional] | |
| software_version | VCellSoftwareVersion | [optional] |
from vcell_client.models.vc_image_summary import VCImageSummary
# TODO update the JSON string below
json = "{}"
# create an instance of VCImageSummary from a JSON string
vc_image_summary_instance = VCImageSummary.from_json(json)
# print the JSON string representation of the object
print VCImageSummary.to_json()
# convert the object into a dict
vc_image_summary_dict = vc_image_summary_instance.to_dict()
# create an instance of VCImageSummary from a dict
vc_image_summary_form_dict = vc_image_summary.from_dict(vc_image_summary_dict)