com.hiczp.bilibili.api.app.model.SearchSuggest.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
package com.hiczp.bilibili.api.app.model
import com.google.gson.annotations.SerializedName
data class SearchSuggest(
@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 // 8544564822819789247
) {
data class Suggest(
@SerializedName("from")
var from: String, // search
@SerializedName("keyword")
var keyword: String, // 刀剑神域 ALICIZATION
@SerializedName("position")
var position: Int, // 10
@SerializedName("sug_type")
var sugType: String?, // 番剧
@SerializedName("term_type")
var termType: Int, // 8
@SerializedName("title")
var title: String // 刀剑神域 ALICIZATION
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy