SettingsReference
String subclass which references a current settings value. It's treated as the value in memory but serializes to a settings.NAME attribute reference.
Attributes
| Attribute | Type | Description |
|---|---|---|
| setting_name | string | The name of the configuration setting being referenced, used to facilitate serialization back to a settings.NAME attribute. |
Constructor
Signature
def SettingsReference(
value: Any,
setting_name: str
) - > null
Parameters
| Name | Type | Description |
|---|---|---|
| value | Any | The actual value to be held by the string subclass. |
| setting_name | str | The name of the settings attribute to reference during serialization. |