mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 19:33:55 +00:00
added auth and response models
This commit is contained in:
parent
d4122d197f
commit
5112b655bd
@ -0,0 +1,8 @@
|
||||
package com.wordnik.swagger.codegen;
|
||||
|
||||
|
||||
public class CodegenResponse {
|
||||
public String code, message;
|
||||
public Boolean hasMore;
|
||||
Object schema;
|
||||
}
|
@ -0,0 +1,6 @@
|
||||
package com.wordnik.swagger.codegen.auth;
|
||||
|
||||
public interface AuthMethod {
|
||||
String getType();
|
||||
void setType(String type);
|
||||
}
|
Loading…
Reference in New Issue
Block a user