
com.hiczp.bilibili.api.app.model.SearchHot.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bilibili-api Show documentation
Show all versions of bilibili-api Show documentation
Bilibili Android client API library for Kotlin
The newest version!
package com.hiczp.bilibili.api.app.model
import com.google.gson.annotations.SerializedName
data class SearchHot(
@SerializedName("code")
var code: Int, // 0
@SerializedName("data")
var `data`: Data,
@SerializedName("message")
var message: String, // 0
@SerializedName("ttl")
var ttl: Int // 1
) {
data class Data(
@SerializedName("list")
var list: List,
@SerializedName("trackid")
var trackid: String // 3482080616107297898
) {
data class Hot(
@SerializedName("keyword")
var keyword: String, // 凹凸世界
@SerializedName("name_type")
var nameType: String,
@SerializedName("status")
var status: String
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy