| Name | Type | Description | Notes |
|---|---|---|---|
| version | Version | [optional] | |
| key_value | str | [optional] | |
| model_info | MathModelChildSummary | [optional] | |
| software_version | VCellSoftwareVersion | [optional] | |
| publication_infos | List[PublicationInfo] | [optional] | |
| annotated_functions | str | [optional] |
from vcell_client.models.math_model_summary import MathModelSummary
# TODO update the JSON string below
json = "{}"
# create an instance of MathModelSummary from a JSON string
math_model_summary_instance = MathModelSummary.from_json(json)
# print the JSON string representation of the object
print MathModelSummary.to_json()
# convert the object into a dict
math_model_summary_dict = math_model_summary_instance.to_dict()
# create an instance of MathModelSummary from a dict
math_model_summary_form_dict = math_model_summary.from_dict(math_model_summary_dict)