Imports API functions to this class.
(cls)
| 85 | |
| 86 | @classmethod |
| 87 | def initialize(cls) -> None: |
| 88 | """Imports API functions to this class.""" |
| 89 | if not cls._initialized: |
| 90 | apifunction.ApiFunction.importApi(cls, cls.name(), cls.name()) |
| 91 | cls._initialized = True |
| 92 | |
| 93 | @classmethod |
| 94 | def reset(cls) -> None: |