forked from loafle/openapi-generator-original
78 lines
1.0 KiB
JavaScript
78 lines
1.0 KiB
JavaScript
'use strict';
|
|
|
|
exports.createUser = function(body) {
|
|
|
|
var examples = {};
|
|
|
|
|
|
|
|
}
|
|
exports.createUsersWithArrayInput = function(body) {
|
|
|
|
var examples = {};
|
|
|
|
|
|
|
|
}
|
|
exports.createUsersWithListInput = function(body) {
|
|
|
|
var examples = {};
|
|
|
|
|
|
|
|
}
|
|
exports.loginUser = function(username, password) {
|
|
|
|
var examples = {};
|
|
|
|
examples['application/json'] = "aeiou";
|
|
|
|
|
|
|
|
if(Object.keys(examples).length > 0)
|
|
return examples[Object.keys(examples)[0]];
|
|
|
|
}
|
|
exports.logoutUser = function() {
|
|
|
|
var examples = {};
|
|
|
|
|
|
|
|
}
|
|
exports.getUserByName = function(username) {
|
|
|
|
var examples = {};
|
|
|
|
examples['application/json'] = {
|
|
"id" : 123456789,
|
|
"lastName" : "aeiou",
|
|
"phone" : "aeiou",
|
|
"username" : "aeiou",
|
|
"email" : "aeiou",
|
|
"userStatus" : 123,
|
|
"firstName" : "aeiou",
|
|
"password" : "aeiou"
|
|
};
|
|
|
|
|
|
|
|
if(Object.keys(examples).length > 0)
|
|
return examples[Object.keys(examples)[0]];
|
|
|
|
}
|
|
exports.updateUser = function(username, body) {
|
|
|
|
var examples = {};
|
|
|
|
|
|
|
|
}
|
|
exports.deleteUser = function(username) {
|
|
|
|
var examples = {};
|
|
|
|
|
|
|
|
}
|