OperationResult
Kind: Class
Domain: Core runtime
Canonical import: from cadflow import OperationResult
Signature
class OperationResult(shape: 'Any | None', report: 'OperationReport') -> None
Description
OperationResult(shape: 'Any | None', report: 'OperationReport')
Other public imports
from cadflow.feedback import OperationResult
Parameters
| Name | Type | Required | Default | Source description |
|---|---|---|---|---|
shape | 'Any | None' | yes | - | Not explicitly described in the source docstring. |
report | 'OperationReport' | yes | - | 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 |
|---|---|---|
shape | 'Any | None' | required |
report | 'OperationReport' | required |
Public members
| Member | Kind | Signature | Description |
|---|---|---|---|
to_dict | method | (self) -> 'dict[str, Any]' | See the member signature. |
value | property | - | Alias that also covers scalar query operations. |
Behavior and constraints
- Shape values remain bound to their owning session; do not use them after the session closes.
- Instances are immutable dataclass values; update workflows return a replacement value.
Import check
from cadflow import OperationResult