ParameterDefinitionModel
Bases: PumCustomBaseModel
ParameterDefinitionModel represents a parameter definition in the configuration.
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
Name of the parameter. |
type |
ParameterType
|
Type of the parameter (default is TEXT). |
default |
Any | None
|
Optional default value for the parameter. |
description |
str | None
|
Optional description of the parameter. |
app_only |
bool
|
If True, the parameter can be changed when recreating the app. Standard parameters (app_only=False) must remain the same across the whole module lifecycle. |