-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
0 deletions.
There are no files selected for viewing
19 changes: 19 additions & 0 deletions
19
src/main/kotlin/one/devos/osuv2kt/models/comment/CommentBundle.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package one.devos.osuv2kt.models.comment | ||
|
||
import one.devos.osuv2kt.models.user.User | ||
|
||
public data class CommentBundle( | ||
public val commentableMeta: Array<CommentableMeta>, | ||
public val comments: Array<Comment>, | ||
public val cursor: String, // should be Cursor | ||
public val hasMore: Boolean, | ||
public val hasMoreId: Int?, | ||
public val includedComments: Array<Comment>, | ||
public val pinnedComments: Array<Comment>?, | ||
public val sort: String, | ||
public val topLevelCount: Int?, | ||
public val total: Int?, | ||
public val userFollow: Boolean, | ||
public val userVotes: IntArray, | ||
public val users: Array<User> | ||
) |