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

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

package xyz.cssxsh.pixiv.fanbox

import kotlinx.serialization.*

@Serializable
public data class PostList(
    @SerialName("items")
    override val items: List,
    @SerialName("nextUrl")
    override val nextUrl: String?,
    val count: Int? = null
) : ItemList, List by items




© 2015 - 2024 Weber Informatics LLC | Privacy Policy