Subgroup: Processing

Class: QgsProcessingModelOutput

class qgis.core.QgsProcessingModelOutput(name: str = '', description: str = '')

Bases: qgis._core.QgsProcessingModelComponent

Constructor for QgsProcessingModelOutput with the specified name and description.

QgsProcessingModelOutput(QgsProcessingModelOutput)

Represents a final output created by the model.

New in version 3.0: Methods

childId Returns the child algorithm ID from which this output is generated.
childOutputName Returns the child algorithm output name from which this output is generated.
defaultValue Returns the default value for the model output parameter.
isMandatory Returns true if the output is mandatory.
loadVariant Loads this output from a QVariantMap.
name Returns the model output name.
restoreCommonProperties
saveCommonProperties
setChildId Sets the child algorithm id from which this output is generated.
setChildOutputName Sets the child algorithm output name from which this output is generated.
setDefaultValue Sets the default value for the model output.
setMandatory Sets whether the output is mandatory.
setName Sets the model output name.
toVariant Saves this output to a QVariant.

Signals

Attributes

childId(self) → str

Returns the child algorithm ID from which this output is generated.

See also

setChildId()

childOutputName(self) → str

Returns the child algorithm output name from which this output is generated.

See also

setOutputName()

defaultValue(self) → Any

Returns the default value for the model output parameter.

New in version 3.2.

isMandatory(self) → bool

Returns true if the output is mandatory. This may override the associated child algorithm’s parameter optional status - e.g. allowing an optional output from an algorithm to be mandatory within a model.

See also

setMandatory()

New in version 3.2.

loadVariant(self, map: Dict[str, Any]) → bool

Loads this output from a QVariantMap.

See also

toVariant()

name(self) → str

Returns the model output name.

See also

setName()

restoreCommonProperties()
saveCommonProperties()
setChildId(self, id: str)

Sets the child algorithm id from which this output is generated.

See also

childId()

setChildOutputName(self, name: str)

Sets the child algorithm output name from which this output is generated.

See also

outputName()

setDefaultValue(self, value: Any)

Sets the default value for the model output.

See also

defaultValue()

New in version 3.2.

setMandatory(self, mandatory: bool)

Sets whether the output is mandatory. This may override the associated child algorithm’s parameter optional status - e.g. allowing an optional output from an algorithm to be mandatory within a model.

See also

isMandatory()

New in version 3.2.

setName(self, name: str)

Sets the model output name.

See also

name()

toVariant(self) → Any

Saves this output to a QVariant.

See also

loadVariant()