openlifu.plan.run.Run¶
- class openlifu.plan.run.Run(id: Annotated[str | None, OpenLIFUFieldData('Run ID', 'ID of the run')] = None, name: Annotated[str | None, OpenLIFUFieldData('Run name', 'Name of the run')] = None, success_flag: Annotated[bool | None, OpenLIFUFieldData('Success?', 'True when run was successful, False otherwise')] = None, note: Annotated[str | None, OpenLIFUFieldData('Run notes', 'Large text containing notes about the run')] = None, session_id: Annotated[str | None, OpenLIFUFieldData('Session ID', 'Session ID')] = None, solution_id: Annotated[str | None, OpenLIFUFieldData('Solution ID', 'Solution ID')] = None)[source]¶
Bases:
objectClass representing a run
- static from_file(filename)[source]¶
Create a Run from a file
- Parameters:
filename – Name of the file to read
- Returns:
Run object
- id: Annotated[str | None, OpenLIFUFieldData('Run ID', 'ID of the run')] = None¶
ID of the run
- name: Annotated[str | None, OpenLIFUFieldData('Run name', 'Name of the run')] = None¶
Name of the run
- note: Annotated[str | None, OpenLIFUFieldData('Run notes', 'Large text containing notes about the run')] = None¶
Large text containing notes about the run
- session_id: Annotated[str | None, OpenLIFUFieldData('Session ID', 'Session ID')] = None¶
Session ID
- solution_id: Annotated[str | None, OpenLIFUFieldData('Solution ID', 'Solution ID')] = None¶
Solution ID
- success_flag: Annotated[bool | None, OpenLIFUFieldData('Success?', 'True when run was successful, False otherwise')] = None¶
True when run was successful, False otherwise