openff.bespokefit.executor.services.coordinator.models.CoordinatorGETStageStatus

model openff.bespokefit.executor.services.coordinator.models.CoordinatorGETStageStatus[source]

Bases: BaseModel

Fields
field type: str [Required]

The type of stage.

field status: Literal['waiting', 'running', 'errored', 'success'] [Required]

The status of the stage.

field error: Optional[str] [Required]

The error, if any, raised by the stage.

field results: Optional[List[Link]] [Required]

Links to the results generated by this stage.

classmethod from_stage(stage: Union[FragmentationStage, QCGenerationStage, OptimizationStage])[source]