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

8 lines
205 B
Python
Raw Normal View History

class Billing():
def __init__(self, base):
self.method = "getCallBilling"
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)