Skip to main content

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

NameTypeRequiredDefaultSource 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

NameTypeDefault
shape'Any | None'required
report'OperationReport'required

Public members

MemberKindSignatureDescription
to_dictmethod(self) -> 'dict[str, Any]'See the member signature.
valueproperty-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

See also