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_status_persistent_recordimportSimulationStatusPersistentRecord# TODO update the JSON string belowjson="{}"# create an instance of SimulationStatusPersistentRecord from a JSON stringsimulation_status_persistent_record_instance=SimulationStatusPersistentRecord.from_json(json)
# print the JSON string representation of the objectprintSimulationStatusPersistentRecord.to_json()
# convert the object into a dictsimulation_status_persistent_record_dict=simulation_status_persistent_record_instance.to_dict()
# create an instance of SimulationStatusPersistentRecord from a dictsimulation_status_persistent_record_form_dict=simulation_status_persistent_record.from_dict(simulation_status_persistent_record_dict)