[docs]classABCApi(ABC):""" Abstract API class. If you want to create your own API, you should inherit this class. """__slots__=("_client","_auth_data","_headers")_client:"ABCHttpClient"_auth_data:dict[str,str]_headers:dict[str,str]@abstractmethoddef__init__(self,client:"ABCHttpClient")->None:self._client=client