regenerated python, python3 and php clients

This commit is contained in:
Russell Horton
2013-10-18 16:24:08 -07:00
parent 2dda926cb6
commit af96f33e6f
20 changed files with 317 additions and 127 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'