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