forked from loafle/openapi-generator-original
Merge remote-tracking branch 'origin/4.1.x' into sync_41x_50x
This commit is contained in:
@@ -91,7 +91,7 @@ apiInstance.createUsersWithArrayInput(body, callback);
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------- | ------------- | ------------- | -------------
|
||||
**body** | [**[User]**](Array.md)| List of user object |
|
||||
**body** | [**[User]**](User.md)| List of user object |
|
||||
|
||||
### Return type
|
||||
|
||||
@@ -136,7 +136,7 @@ apiInstance.createUsersWithListInput(body, callback);
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------- | ------------- | ------------- | -------------
|
||||
**body** | [**[User]**](Array.md)| List of user object |
|
||||
**body** | [**[User]**](User.md)| List of user object |
|
||||
|
||||
### Return type
|
||||
|
||||
|
||||
@@ -609,7 +609,8 @@
|
||||
];
|
||||
};
|
||||
|
||||
exports.getBasePathFromSettings = function(index, variables={}) {
|
||||
exports.getBasePathFromSettings = function(index, variables) {
|
||||
var variables = variables || {};
|
||||
var servers = this.hostSettings();
|
||||
|
||||
// check array index out of bound
|
||||
|
||||
@@ -100,7 +100,7 @@
|
||||
|
||||
/**
|
||||
* Creates list of users with given input array
|
||||
* @param {Array.<User>} body List of user object
|
||||
* @param {Array.<module:model/User>} body List of user object
|
||||
* @param {module:api/UserApi~createUsersWithArrayInputCallback} callback The callback function, accepting three arguments: error, data, response
|
||||
*/
|
||||
this.createUsersWithArrayInput = function(body, callback) {
|
||||
@@ -142,7 +142,7 @@
|
||||
|
||||
/**
|
||||
* Creates list of users with given input array
|
||||
* @param {Array.<User>} body List of user object
|
||||
* @param {Array.<module:model/User>} body List of user object
|
||||
* @param {module:api/UserApi~createUsersWithListInputCallback} callback The callback function, accepting three arguments: error, data, response
|
||||
*/
|
||||
this.createUsersWithListInput = function(body, callback) {
|
||||
|
||||
Reference in New Issue
Block a user