We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c2f14e commit 158ba74Copy full SHA for 158ba74
src/main/java/io/securecodebox/persistence/defectdojo/model/PaginatedResult.java
@@ -17,6 +17,9 @@
17
*/
18
@Data
19
public final class PaginatedResult<T extends Model> {
20
+ /**
21
+ * TODO: What does this count? The number of results in one page or the total number?
22
+ */
23
@JsonProperty
24
private int count;
25
@@ -27,6 +30,9 @@ public final class PaginatedResult<T extends Model> {
27
30
28
31
private String next;
29
32
33
34
+ * TODO: What does this contain? I would expect a number for the previous page.
35
36
37
private String previous = "";
38
0 commit comments