OperationReport
Kind: Class
Domain: Core runtime
Canonical import: from cadflow import OperationReport
Signature
class OperationReport(operation: 'str', status: 'str', output: 'Mapping[str, Any]' = <factory>, diagnostics: 'tuple[Diagnostic, ...]' = (), parameters: 'Mapping[str, Any]' = <factory>) -> None
Description
OperationReport(operation: 'str', status: 'str', output: 'Mapping[str, Any]' = <factory>, diagnostics: 'tuple[Diagnostic, ...]' = (), parameters: 'Mapping[str, Any]' = <factory>)
Other public imports
from cadflow.feedback import OperationReport
Parameters
| Name | Type | Required | Default | Source description |
|---|---|---|---|---|
operation | 'str' | yes | - | Not explicitly described in the source docstring. |
status | 'str' | yes | - | Not explicitly described in the source docstring. |
output | 'Mapping[str, Any]' | no | <factory> | Not explicitly described in the source docstring. |
diagnostics | 'tuple[Diagnostic, ...]' | no | () | Not explicitly described in the source docstring. |
parameters | 'Mapping[str, Any]' | no | <factory> | Not explicitly described in the source docstring. |
Returns
Type: None
The source docstring does not declare additional return semantics.
Errors
The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.
Data fields
| Name | Type | Default |
|---|---|---|
operation | 'str' | required |
status | 'str' | required |
output | 'Mapping[str, Any]' | factory |
diagnostics | 'tuple[Diagnostic, ...]' | () |
parameters | 'Mapping[str, Any]' | factory |
Public members
| Member | Kind | Signature | Description |
|---|---|---|---|
ok | property | - | See the member signature. |
to_dict | method | (self) -> 'dict[str, Any]' | See the member signature. |
Behavior and constraints
- Instances are immutable dataclass values; update workflows return a replacement value.
Import check
from cadflow import OperationReport