All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hiczp.picacomic.api.service.comic.model.SendCommentResponse.kt Maven / Gradle / Ivy

package com.hiczp.picacomic.api.service.comic.model

import com.google.gson.annotations.SerializedName
import com.hiczp.picacomic.api.service.ContentAndUser

/**
 * 发送评论后的回复, 由于未能测试, 不明确各字段的 nullable
 */
data class SendCommentResponse(
    @field:SerializedName("_id")
    val commentId: String,
    val comment: ContentAndUser,
    @field:SerializedName("_comic")
    val comicId: String?,
    @field:SerializedName("_game")
    val gameId: String?,
    @field:SerializedName("_parent")
    val parentId: String?,
    @Suppress("SpellCheckingInspection")
    @field:SerializedName("childsCount")
    val childCount: Int,
    val likesCount: Int,
    @field:SerializedName("created_at")
    val createdAt: String
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy