Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.14 KB

File metadata and controls

32 lines (24 loc) · 1.14 KB

VCImageSummary

Properties

Name Type Description Notes
size ISize [optional]
extent Extent [optional]
version Version [optional]
preview GIFImage [optional]
software_version VCellSoftwareVersion [optional]

Example

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)

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