Imports API functions to this class.
(cls)
| 49 | |
| 50 | @classmethod |
| 51 | def initialize(cls) -> None: |
| 52 | """Imports API functions to this class.""" |
| 53 | if not cls._initialized: |
| 54 | apifunction.ApiFunction.importApi(cls, cls.name(), cls.name()) |
| 55 | cls._initialized = True |
| 56 | |
| 57 | @classmethod |
| 58 | def reset(cls) -> None: |