![JAR search and dependency download from the Maven repository](/logo.png)
com.hiczp.bilibili.api.app.model.SearchMovieResult.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 SearchMovieResult(
@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("items")
var items: List- ,
@SerializedName("pages")
var pages: Int, // 1
@SerializedName("total")
var total: Int, // 2
@SerializedName("trackid")
var trackid: String // 11415000413319714311
) {
data class Item(
@SerializedName("area")
var area: String, // 日本
@SerializedName("badge")
var badge: String, // 电影
/**
* badge 的特殊样式
*/
@SerializedName("badges")
var badges: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy