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

xyz.cssxsh.pixiv.fanbox.CommentList.kt Maven / Gradle / Ivy

package xyz.cssxsh.pixiv.fanbox

import kotlinx.serialization.*

@Serializable
public data class CommentList(
    @SerialName("items")
    override val items: List,
    @SerialName("nextUrl")
    override val nextUrl: String?
) : ItemList, List by items {
    public companion object {
        public val Empty: CommentList = CommentList(items = emptyList(), nextUrl = null)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy