added more endpoints, fixed some bugs with code generator
This commit is contained in:
parent
599ea9163c
commit
d1666beace
@ -1,3 +1,3 @@
|
||||
@property
|
||||
def {{method_name}}(self):
|
||||
return self.general.{{method_name}}
|
||||
return self.{{subdir}}.{{method_name}}
|
@ -7,8 +7,8 @@ print("Which category does this endpoint fall under?")
|
||||
subdir_index = int(input("1: accounts, 2: call_detail_records, 3: dids, 4: general, 5: voicemail: "))
|
||||
subdir = ("accounts", "call_detail_records", "dids", "general", "voicemail")[subdir_index - 1]
|
||||
|
||||
endpoint = "getLanguages"
|
||||
method = "languages"
|
||||
endpoint = "getRegistrationStatus"
|
||||
method = "registration_status"
|
||||
|
||||
filename = "../voipms/api/{}/{}.py".format(subdir, method)
|
||||
|
||||
@ -60,7 +60,7 @@ with open(filename, 'w') as file:
|
||||
filename = "../voipms/api/__init__.py"
|
||||
|
||||
template = env.get_template('dir_init.j2')
|
||||
output = template.render(method_name=method)
|
||||
output = template.render(subdir=subdir, method_name=method)
|
||||
|
||||
with open(filename, 'a') as file:
|
||||
file.writelines("\n\n" + output)
|
@ -86,12 +86,20 @@ class Client(object):
|
||||
|
||||
@property
|
||||
def transaction_history(self):
|
||||
return self.general.transaction_history
|
||||
|
||||
@property
|
||||
def countries(self):
|
||||
return self.general.countries
|
||||
|
||||
@property
|
||||
def languages(self):
|
||||
return self.general.languages
|
||||
return self.general.transaction_history
|
||||
|
||||
@property
|
||||
def countries(self):
|
||||
return self.general.countries
|
||||
|
||||
@property
|
||||
def languages(self):
|
||||
return self.general.languages
|
||||
|
||||
@property
|
||||
def subaccount(self):
|
||||
return self.accounts.subaccount
|
||||
|
||||
@property
|
||||
def registration_status(self):
|
||||
return self.accounts.registration_status
|
@ -1,4 +1,21 @@
|
||||
class Accounts():
|
||||
def __init__(self, base):
|
||||
self._balance = None
|
||||
self.base = base
|
||||
from voipms.api.accounts.subaccount import Subaccount
|
||||
from voipms.api.accounts.registration_status import RegistrationStatus
|
||||
|
||||
class Accounts():
|
||||
def __init__(self, base):
|
||||
self._subaccount = None
|
||||
self._registration_status = None
|
||||
|
||||
self.base = base
|
||||
|
||||
@property
|
||||
def subaccount(self):
|
||||
if self._subaccount is None:
|
||||
self._subaccount = Subaccount(self.base)
|
||||
return self._subaccount
|
||||
|
||||
@property
|
||||
def registration_status(self):
|
||||
if self._registration_status is None:
|
||||
self._registration_status = RegistrationStatus(self.base)
|
||||
return self._registration_status
|
7
voipms/api/accounts/registration_status.py
Normal file
7
voipms/api/accounts/registration_status.py
Normal file
@ -0,0 +1,7 @@
|
||||
class RegistrationStatus():
|
||||
def __init__(self, base):
|
||||
self.method = "getRegistrationStatus"
|
||||
self.base = base
|
||||
|
||||
def fetch(self, params={}):
|
||||
return self.base.request(self.method, params=params)
|
7
voipms/api/accounts/subaccount.py
Normal file
7
voipms/api/accounts/subaccount.py
Normal file
@ -0,0 +1,7 @@
|
||||
class Subaccount():
|
||||
def __init__(self, base):
|
||||
self.method = "createSubAccount"
|
||||
self.base = base
|
||||
|
||||
def fetch(self, params={}):
|
||||
return self.base.request(self.method, params=params)
|
@ -1,4 +1,5 @@
|
||||
|
||||
class CallDetailRecords():
|
||||
def __init__(self, base):
|
||||
self._balance = None
|
||||
|
||||
self.base = base
|
@ -1,4 +1,5 @@
|
||||
|
||||
class DIDs():
|
||||
def __init__(self, base):
|
||||
self._balance = None
|
||||
|
||||
self.base = base
|
@ -1,4 +1,5 @@
|
||||
|
||||
class Voicemail():
|
||||
def __init__(self, base):
|
||||
self._balance = None
|
||||
|
||||
self.base = base
|
Loading…
Reference in New Issue
Block a user