Imports API functions to this class.
(cls)
| 69 | |
| 70 | @classmethod |
| 71 | def initialize(cls) -> None: |
| 72 | """Imports API functions to this class.""" |
| 73 | if not cls._initialized: |
| 74 | apifunction.ApiFunction.importApi(cls, cls.name(), cls.name()) |
| 75 | cls._initialized = True |
| 76 | |
| 77 | @classmethod |
| 78 | def reset(cls) -> None: |