Skip to content

Commit

Permalink
CommentBundle
Browse files Browse the repository at this point in the history
  • Loading branch information
asoji committed Sep 15, 2024
1 parent 968b206 commit a87406f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/main/kotlin/one/devos/osuv2kt/models/comment/CommentBundle.kt
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>
)

0 comments on commit a87406f

Please sign in to comment.