ExportEvent
Properties
| Name |
Type |
Description |
Notes |
| event_type |
ExportProgressType |
|
[optional] |
| progress |
float |
|
[optional] |
| format |
str |
|
[optional] |
| location |
str |
|
[optional] |
| user |
User |
|
[optional] |
| job_id |
int |
|
[optional] |
| data_key |
str |
|
[optional] |
| data_id_string |
str |
|
[optional] |
| human_readable_data |
HumanReadableExportData |
|
[optional] |
Example
from vcell_client.models.export_event import ExportEvent
json = "{}"
export_event_instance = ExportEvent.from_json(json)
print ExportEvent.to_json()
export_event_dict = export_event_instance.to_dict()
export_event_form_dict = export_event.from_dict(export_event_dict)
[Back to Model list] [Back to API list] [Back to README]