![JAR search and dependency download from the Maven repository](/logo.png)
com.hiczp.bilibili.api.vc.model.DynamicNumber.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 DynamicNumber(
@SerializedName("code")
var code: Int, // 0
@SerializedName("data")
var `data`: Data,
@SerializedName("message")
var message: String,
@SerializedName("msg")
var msg: String
) {
data class Data(
@SerializedName("_gt_")
var gt: Int, // 0
@SerializedName("exist_gap")
var existGap: Int, // 1
@SerializedName("new_num")
var newNum: Int, // 30
@SerializedName("update_num")
var updateNum: Int // 100
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy