added auth and response models

This commit is contained in:
Tony Tam 2014-09-14 17:47:59 -07:00
parent d4122d197f
commit 5112b655bd
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,8 @@
package com.wordnik.swagger.codegen;
public class CodegenResponse {
public String code, message;
public Boolean hasMore;
Object schema;
}

View File

@ -0,0 +1,6 @@
package com.wordnik.swagger.codegen.auth;
public interface AuthMethod {
String getType();
void setType(String type);
}