We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aacc4ef commit b449f82Copy full SHA for b449f82
src/main/java/org/qo/datas/Mapping.kt
@@ -19,17 +19,17 @@ object GsonProvider {
19
class Mapping {
20
21
data class Users(
22
- val username: String,
23
- val uid: Long,
+ val username: String = "",
+ val uid: Long = 0L,
24
val frozen: Boolean? = false,
25
val remain: Int? = 3,
26
val economy: Int? = 0,
27
val signed: Boolean? = false,
28
val playtime: Int? = 0,
29
- val temp: Boolean?,
30
- val invite: Int?,
31
- var password: String,
32
- val profile_id: String,
+ val temp: Boolean? = false,
+ val invite: Int? = 0,
+ var password: String = "",
+ val profile_id: String = "",
33
val exp_level: Int? = 0,
34
) {
35
override fun equals(other: Any?): Boolean {
0 commit comments