Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.09 KB

File metadata and controls

31 lines (23 loc) · 1.09 KB

SimulationMessage

Properties

Name Type Description Notes
detailed_state DetailedState [optional]
message str [optional]
htc_job_id HtcJobID [optional]
display_message str [optional]

Example

from vcell_client.models.simulation_message import SimulationMessage

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

# convert the object into a dict
simulation_message_dict = simulation_message_instance.to_dict()
# create an instance of SimulationMessage from a dict
simulation_message_form_dict = simulation_message.from_dict(simulation_message_dict)

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