ジェネリックを返すと、エンドポイントの api ファイルが消えるようです。サンプルコードを貼り付けます。
@ApiMethod
public RestResponse<Container> testGeneric() {
Container container = new Container();
container.testLong = (long)4345;
container.testDate = new Date();
container.testString = "sathya";
container.testDouble = 123.98;
container.testInt = 123;
RestResponse<Container> response = new RestResponse<Container>();
response.t = container;
return response;
}
これはエンドポイントのバグであり、そのようなことはまったく許可されていませんか?
よろしく、サティア