We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5333cd commit 2cea272Copy full SHA for 2cea272
src/ansys/dpf/core/dpf_operator.py
@@ -664,7 +664,21 @@ def config(self, value):
664
665
@property
666
@version_requires("10.0")
667
- def id(self):
+ def id(self) -> int:
668
+ """Retrieve the unique identifier of the operator.
669
+
670
+ This property returns the unique ID associated with the operator.
671
+ This property is lazily initialized.
672
673
+ Returns
674
+ -------
675
+ int
676
+ The unique identifier of the operator.
677
678
+ Notes
679
+ -----
680
+ Property available with server's version starting at 10.0.
681
+ """
682
if self._id is None:
683
operator_id_op = Operator("operator_id", server=self._server)
684
operator_id_op.connect_operator_as_input(0, self)
0 commit comments