Updating all samples (except feign) (#5281)

This commit is contained in:
Paŭlo Ebermann
2017-04-02 11:01:15 +02:00
committed by wing328
parent 071c012f85
commit ce41a343d8
72 changed files with 227 additions and 226 deletions

View File

@@ -62,7 +62,7 @@
var pathParams = {
'orderId': orderId
'order_id': orderId
};
var queryParams = {
};
@@ -77,7 +77,7 @@
var returnType = null;
return this.apiClient.callApi(
'/store/order/{orderId}', 'DELETE',
'/store/order/{order_id}', 'DELETE',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType
);
@@ -156,7 +156,7 @@
var pathParams = {
'orderId': orderId
'order_id': orderId
};
var queryParams = {
};
@@ -171,7 +171,7 @@
var returnType = Order;
return this.apiClient.callApi(
'/store/order/{orderId}', 'GET',
'/store/order/{order_id}', 'GET',
pathParams, queryParams, headerParams, formParams, postBody,
authNames, contentTypes, accepts, returnType
);