Imports API functions to this class.
(cls)
| 59 | |
| 60 | @classmethod |
| 61 | def initialize(cls) -> None: |
| 62 | """Imports API functions to this class.""" |
| 63 | if not cls._initialized: |
| 64 | apifunction.ApiFunction.importApi(cls, cls.name(), cls.name()) |
| 65 | cls._initialized = True |
| 66 | |
| 67 | @classmethod |
| 68 | def reset(cls) -> None: |