You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromvcell_client.models.simulation_queue_entry_status_recordimportSimulationQueueEntryStatusRecord# TODO update the JSON string belowjson="{}"# create an instance of SimulationQueueEntryStatusRecord from a JSON stringsimulation_queue_entry_status_record_instance=SimulationQueueEntryStatusRecord.from_json(json)
# print the JSON string representation of the objectprintSimulationQueueEntryStatusRecord.to_json()
# convert the object into a dictsimulation_queue_entry_status_record_dict=simulation_queue_entry_status_record_instance.to_dict()
# create an instance of SimulationQueueEntryStatusRecord from a dictsimulation_queue_entry_status_record_form_dict=simulation_queue_entry_status_record.from_dict(simulation_queue_entry_status_record_dict)