1234567891011121314151617181920212223 |
- # -*- coding: utf-8 -*-
- # !/usr/bin/env python
- import logging
- from typing import TYPE_CHECKING
- from apps.web.core.payment import PaymentGateway
- if TYPE_CHECKING:
- pass
- logger = logging.getLogger(__name__)
- class ManualPaymentGateway(PaymentGateway):
- def __init__(self, app, gateway_type):
- super(ManualPaymentGateway, self).__init__(app)
- self.__gateway_type__ = gateway_type
- def __repr__(self):
- return '<ManualPaymentGateway(occupantId = %s)>' % (
- str(self.occupantId))
|