GenericGalleryParameter Class
The definition of a generic gallery parameter.
Constructor
GenericGalleryParameter(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
name
|
The name of the parameter. Required. |
|
required
|
Indicates whether this parameter must be passed. |
|
default_value
|
The default value of the parameter, only applies to string types. |
|
description
|
A description to help users understand what this parameter means. |
Attributes
default_value
The default value of the parameter, only applies to string types.
default_value: str | None
description
A description to help users understand what this parameter means.
description: str | None
name
The name of the parameter. Required.
name: str
required
Indicates whether this parameter must be passed.
required: bool | None