We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28696ff commit 8b712c4Copy full SHA for 8b712c4
src/main/java/io/securecodebox/persistence/defectdojo/model/PaginatedResult.java
@@ -17,12 +17,21 @@
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
26
27
+ * TODO: What does this contain? I would expect a number for the next page.
28
29
30
private String next = "";
31
32
33
+ * TODO: What does this contain? I would expect a number for the previous page.
34
35
36
private String previous = "";
37
0 commit comments