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

7 lines
208 B
Python

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