Imports API functions to this class.
(cls)
| 40 | |
| 41 | @classmethod |
| 42 | def initialize(cls) -> None: |
| 43 | """Imports API functions to this class.""" |
| 44 | if not cls._initialized: |
| 45 | apifunction.ApiFunction.importApi(cls, cls.name(), cls.name()) |
| 46 | cls._initialized = True |
| 47 | |
| 48 | @classmethod |
| 49 | def reset(cls) -> None: |