| Name | Type | Description | Notes |
|---|---|---|---|
| job_status | SimulationJobStatusRecord | [optional] | |
| user_name | str | [optional] | |
| progress | float | [optional] | |
| timepoint | float | [optional] |
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)