We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a912d58 commit 69a6e6eCopy full SHA for 69a6e6e
src/main/java/org/openpodcastapi/opa/pagination/Cursorable.java
@@ -5,6 +5,13 @@
5
/// An interface for results that can be paginated using a pagination.
6
/// Any cursorable entity must have methods for fetching the database ID and created timestamp.
7
public interface Cursorable {
8
+ /**
9
+ * @return the entity ID
10
+ */
11
Long getId();
12
+
13
14
+ * @return the entity's `created_at` timestamp
15
16
Instant getCreatedAt();
17
}
0 commit comments