Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 831 Bytes

Simulation.md

File metadata and controls

28 lines (20 loc) · 831 Bytes

Simulation

Properties

Name Type Description Notes
name str [optional]

Example

from vcell_api_client.models.simulation import Simulation

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

# convert the object into a dict
simulation_dict = simulation_instance.to_dict()
# create an instance of Simulation from a dict
simulation_form_dict = simulation.from_dict(simulation_dict)

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