regenerated client

This commit is contained in:
Tony Tam
2013-10-18 14:44:02 -07:00
parent c4990b773d
commit 731fddbc30
45 changed files with 1235 additions and 468 deletions

View File

@@ -47,7 +47,7 @@ class StoreApi(object):
params[key] = val
del params['kwargs']
resourcePath = '/store.{format}/order/{orderId}'
resourcePath = '/store/order/{orderId}'
resourcePath = resourcePath.replace('{format}', 'json')
method = 'GET'
@@ -88,7 +88,7 @@ class StoreApi(object):
params[key] = val
del params['kwargs']
resourcePath = '/store.{format}/order/{orderId}'
resourcePath = '/store/order/{orderId}'
resourcePath = resourcePath.replace('{format}', 'json')
method = 'DELETE'
@@ -124,7 +124,7 @@ class StoreApi(object):
params[key] = val
del params['kwargs']
resourcePath = '/store.{format}/order'
resourcePath = '/store/order'
resourcePath = resourcePath.replace('{format}', 'json')
method = 'POST'