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