2022-05-08 03:14:29 +05:30
|
|
|
package com.github.libretube.obj
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties
|
|
|
|
|
|
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
|
|
|
data class Comment(
|
|
|
|
val author: String?,
|
|
|
|
val commentId: String?,
|
|
|
|
val commentText: String?,
|
|
|
|
val commentedTime: String?,
|
|
|
|
val commentorUrl: String?,
|
2022-05-24 14:12:54 +05:30
|
|
|
val repliesPage: String?,
|
2022-05-08 03:14:29 +05:30
|
|
|
val hearted: Boolean?,
|
|
|
|
val likeCount: Int?,
|
|
|
|
val pinned: Boolean?,
|
|
|
|
val thumbnail: String?,
|
|
|
|
val verified: Boolean?
|
2022-05-20 03:52:10 +05:30
|
|
|
) {
|
2022-05-24 14:12:54 +05:30
|
|
|
constructor() : this("", "", "", "", "", "", null, 0, null, "", null)
|
2022-05-08 03:14:29 +05:30
|
|
|
}
|