Returns the serializer class associated with the plugin configuration. Returns: Type[PythonConfigSerializer]: The serializer class.
(cls)
| 1569 | |
| 1570 | @classproperty |
| 1571 | def serializer_class(cls) -> Type["PythonConfigSerializer"]: |
| 1572 | """ |
| 1573 | Returns the serializer class associated with the plugin configuration. |
| 1574 | |
| 1575 | Returns: |
| 1576 | Type[PythonConfigSerializer]: The serializer class. |
| 1577 | """ |
| 1578 | raise NotImplementedError() |
| 1579 | |
| 1580 | @classproperty |
| 1581 | def plugin_name(cls) -> str: |