Imports API functions to this class.
(cls)
| 165 | |
| 166 | @classmethod |
| 167 | def initialize(cls) -> None: |
| 168 | """Imports API functions to this class.""" |
| 169 | if not cls._initialized: |
| 170 | apifunction.ApiFunction.importApi(cls, cls.name(), cls.name()) |
| 171 | cls._initialized = True |
| 172 | |
| 173 | @classmethod |
| 174 | def reset(cls) -> None: |