Class: QgsProcessingModelChildAlgorithmResult¶
Encapsulates the results of running a child algorithm within a model.
Added in version 3.38.
Methods
Returns the status of executing the child algorithm. |
|
Returns the HTML formatted contents of logged messages which occurred while running the child. |
|
Returns the inputs used for the child algorithm. |
|
Returns the outputs generated by the child algorithm. |
|
Sets the status of executing the child algorithm. |
|
Sets the HTML formatted contents of logged messages which occurred while running the child. |
|
Sets the inputs used for the child algorithm. |
|
Sets the outputs generated by child algorithm. |
- class qgis.core.QgsProcessingModelChildAlgorithmResult[source]¶
Bases:
object
- executionStatus(self) Qgis.ProcessingModelChildAlgorithmExecutionStatus [source]¶
Returns the status of executing the child algorithm.
See also
- Return type:
- htmlLog(self) str [source]¶
Returns the HTML formatted contents of logged messages which occurred while running the child.
See also
- Return type:
str
- inputs(self) Dict[str, Any] [source]¶
Returns the inputs used for the child algorithm.
See also
- Return type:
Dict[str, Any]
- outputs(self) Dict[str, Any] [source]¶
Returns the outputs generated by the child algorithm.
See also
- Return type:
Dict[str, Any]
- setExecutionStatus(self, status: Qgis.ProcessingModelChildAlgorithmExecutionStatus)[source]¶
Sets the
status
of executing the child algorithm.See also
- Parameters:
- setHtmlLog(self, log: str | None)[source]¶
Sets the HTML formatted contents of logged messages which occurred while running the child.
See also
- Parameters:
log (Optional[str])