-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSSOTPartners.py
20 lines (14 loc) · 1.19 KB
/
SSOTPartners.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from TransactionGatewayAbstract import PartnerGatewayAbstract
class SSOTPartners(PartnerGatewayAbstract):
def __init__(self):
self.init()
@staticmethod
def get_name():
return "SSOT Partners"
@staticmethod
def get_short_name():
return "SSOTPartners"
def init(self):
raise NotImplementedError()
def fetchPartners(self):
raise NotImplementedError()