com.hiczp.bilibili.api.vc.model.AttentionList.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.vc.model
import com.google.gson.annotations.SerializedName
data class AttentionList(
@SerializedName("code")
var code: Int, // 0
@SerializedName("data")
var `data`: Data,
@SerializedName("message")
var message: String, // success
@SerializedName("msg")
var msg: String // success
) {
data class Data(
@SerializedName("list")
var list: List
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy