voipms-python/voipms/api/general/transaction_history.py
2019-08-18 22:02:13 -04:00

7 lines
226 B
Python

class TransactionHistory():
def __init__(self, base):
self.method = "getTransactionHistory"
self.base = base
def fetch(self, params={}):
return self.base.request(self.method, params=params)