Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.03 KB

File metadata and controls

31 lines (23 loc) · 1.03 KB

StatusMessage

Properties

Name Type Description Notes
job_status SimulationJobStatusRecord [optional]
user_name str [optional]
progress float [optional]
timepoint float [optional]

Example

from vcell_client.models.status_message import StatusMessage

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

# convert the object into a dict
status_message_dict = status_message_instance.to_dict()
# create an instance of StatusMessage from a dict
status_message_form_dict = status_message.from_dict(status_message_dict)

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