forked from loafle/openapi-generator-original
fixed input type
This commit is contained in:
parent
8519480f2c
commit
622d883344
@ -21,7 +21,7 @@ public:
|
|||||||
QString host;
|
QString host;
|
||||||
QString basePath;
|
QString basePath;
|
||||||
|
|
||||||
{{#operations}}{{#operation}}void {{nickname}}({{#allParams}}{{dataType}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}});
|
{{#operations}}{{#operation}}void {{nickname}}({{#allParams}}{{{dataType}}} {{paramName}}{{#hasMore}}, {{/hasMore}}{{/allParams}});
|
||||||
{{/operation}}{{/operations}}
|
{{/operation}}{{/operations}}
|
||||||
private:
|
private:
|
||||||
{{#operations}}{{#operation}}void {{nickname}}Callback (HttpRequestWorker * worker);
|
{{#operations}}{{#operation}}void {{nickname}}Callback (HttpRequestWorker * worker);
|
||||||
|
@ -24,8 +24,8 @@ public:
|
|||||||
|
|
||||||
void updatePet(SWGPet body);
|
void updatePet(SWGPet body);
|
||||||
void addPet(SWGPet body);
|
void addPet(SWGPet body);
|
||||||
void findPetsByStatus(QList<QString*>* status);
|
void findPetsByStatus(QList<QString*>* status);
|
||||||
void findPetsByTags(QList<QString*>* tags);
|
void findPetsByTags(QList<QString*>* tags);
|
||||||
void getPetById(qint64 petId);
|
void getPetById(qint64 petId);
|
||||||
void updatePetWithForm(QString* petId, QString* name, QString* status);
|
void updatePetWithForm(QString* petId, QString* name, QString* status);
|
||||||
void deletePet(QString* api_key, qint64 petId);
|
void deletePet(QString* api_key, qint64 petId);
|
||||||
|
@ -23,8 +23,8 @@ public:
|
|||||||
QString basePath;
|
QString basePath;
|
||||||
|
|
||||||
void createUser(SWGUser body);
|
void createUser(SWGUser body);
|
||||||
void createUsersWithArrayInput(QList<SWGUser*>* body);
|
void createUsersWithArrayInput(QList<SWGUser*>* body);
|
||||||
void createUsersWithListInput(QList<SWGUser*>* body);
|
void createUsersWithListInput(QList<SWGUser*>* body);
|
||||||
void loginUser(QString* username, QString* password);
|
void loginUser(QString* username, QString* password);
|
||||||
void logoutUser();
|
void logoutUser();
|
||||||
void getUserByName(QString* username);
|
void getUserByName(QString* username);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user