voipms-python/voipms/api/general/transaction_history.py

8 lines
223 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)