7 lines
226 B
Python
7 lines
226 B
Python
class RegistrationStatus():
|
|
def __init__(self, base):
|
|
self.method = "getRegistrationStatus"
|
|
self.base = base
|
|
|
|
def fetch(self, params={}):
|
|
return self.base.request(self.method, params=params) |