mirror of
https://github.com/czp3009/bilibili-api.git
synced 2025-02-19 20:50:28 +08:00
fix bug
https://github.com/czp3009/bilibili-api/issues/28 https://github.com/czp3009/bilibili-api/issues/27
This commit is contained in:
parent
bc598c1482
commit
a728d7b4ac
@ -5,7 +5,7 @@
|
||||
|
||||
# 使用
|
||||
```groovy
|
||||
compile group: 'com.hiczp', name: 'bilibili-api', version: '0.1.1'
|
||||
compile group: 'com.hiczp', name: 'bilibili-api', version: '0.1.2'
|
||||
```
|
||||
|
||||
# 技术说明
|
||||
|
@ -16,7 +16,7 @@ buildscript {
|
||||
}
|
||||
|
||||
group = 'com.hiczp'
|
||||
version = '0.1.1'
|
||||
version = '0.1.2'
|
||||
description = 'Bilibili Android client API library for Kotlin'
|
||||
|
||||
apply plugin: 'kotlin'
|
||||
|
@ -15,8 +15,9 @@ data class MyInfo(
|
||||
data class Data(
|
||||
@SerializedName("birthday")
|
||||
var birthday: String, // 1995-11-18
|
||||
//https://github.com/czp3009/bilibili-api/issues/27
|
||||
@SerializedName("coins")
|
||||
var coins: Int, // 1025
|
||||
var coins: Float, // 1025
|
||||
@SerializedName("email_status")
|
||||
var emailStatus: Int, // 0
|
||||
@SerializedName("face")
|
||||
|
@ -390,8 +390,9 @@ data class Space(
|
||||
var currentLevel: Int, // 5
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 10800
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 28800
|
||||
var nextExp: String // 28800
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -169,8 +169,9 @@ data class ChatList(
|
||||
var currentLevel: Int, // 2
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
}
|
||||
|
||||
|
@ -276,8 +276,9 @@ data class ChildReply(
|
||||
var currentLevel: Int, // 5
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
}
|
||||
|
||||
@ -394,8 +395,9 @@ data class ChildReply(
|
||||
var currentLevel: Int, // 5
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
}
|
||||
}
|
||||
|
@ -287,8 +287,9 @@ data class Reply(
|
||||
var currentLevel: Int, // 5
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
|
||||
data class Vip(
|
||||
@ -356,8 +357,9 @@ data class Reply(
|
||||
var currentLevel: Int, // 4
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
|
||||
data class Nameplate(
|
||||
@ -601,8 +603,9 @@ data class Reply(
|
||||
var currentLevel: Int, // 5
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
|
||||
data class FansDetail(
|
||||
@ -771,8 +774,9 @@ data class Reply(
|
||||
var currentLevel: Int, // 5
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
}
|
||||
|
||||
@ -978,8 +982,9 @@ data class Reply(
|
||||
var currentLevel: Int, // 3
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
|
||||
data class Nameplate(
|
||||
@ -1081,8 +1086,9 @@ data class Reply(
|
||||
var currentLevel: Int, // 4
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
|
||||
data class Nameplate(
|
||||
@ -1211,8 +1217,9 @@ data class Reply(
|
||||
var currentLevel: Int, // 5
|
||||
@SerializedName("current_min")
|
||||
var currentMin: Int, // 0
|
||||
//https://github.com/czp3009/bilibili-api/issues/28
|
||||
@SerializedName("next_exp")
|
||||
var nextExp: Int // 0
|
||||
var nextExp: String // 0
|
||||
)
|
||||
|
||||
data class Pendant(
|
||||
|
Loading…
Reference in New Issue
Block a user