voipms-python/voipms/api/call_detail_records/records.py

8 lines
197 B
Python
Raw Normal View History

class Records():
def __init__(self, base):
self.method = "getCDR"
self.base = base
2020-03-17 02:58:09 +00:00
def fetch(self, params={}):
2020-03-17 02:58:09 +00:00
return self.base.request(self.method, params=params)