Name | Type | Description | Notes |
---|---|---|---|
name | str | [optional] |
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)