blob: 859889bc0746d8e843c8f5a907f0025b1e253455 [file]
package {{apiPackage}};
import java.util.List;
import java.util.Map;
import java.util.HashMap;
import java.io.File;
{{#imports}}import {{import}};
{{/imports}}
{{#operations}}
public interface {{classname}} {
{{#operation}}
public {{>returnTypes}} {{operationId}}({{#allParams}}{{>queryParams}}{{>pathParams}}{{>headerParams}}{{>bodyParams}}{{>formParams}}{{#hasMore}}, {{/hasMore}}{{/allParams}});
{{/operation}}
}
{{/operations}}