Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.28 KB

BioModel.md

File metadata and controls

39 lines (31 loc) · 1.28 KB

BioModel

Properties

Name Type Description Notes
bm_key str [optional]
name str [optional]
privacy int [optional]
group_users List[str] [optional]
saved_date int [optional]
annot str [optional]
branch_id str [optional]
phys_model_key str [optional]
owner_name str [optional]
owner_key str [optional]
simulations List[Simulation] [optional]
applications List[object] [optional]

Example

from vcell_api_client.models.bio_model import BioModel

# TODO update the JSON string below
json = "{}"
# create an instance of BioModel from a JSON string
bio_model_instance = BioModel.from_json(json)
# print the JSON string representation of the object
print BioModel.to_json()

# convert the object into a dict
bio_model_dict = bio_model_instance.to_dict()
# create an instance of BioModel from a dict
bio_model_form_dict = bio_model.from_dict(bio_model_dict)

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