Skip to content

Latest commit

 

History

History
33 lines (25 loc) · 1.27 KB

File metadata and controls

33 lines (25 loc) · 1.27 KB

MathModelSummary

Properties

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]

Example

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)

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