8 lines
205 B
Python
8 lines
205 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)
|