mirror of https://github.com/hykilpikonna/AquaDX
[F] export api and game api leaking lastClientId
parent
9ef0d0edfb
commit
fc10c05731
|
@ -114,5 +114,6 @@ public class ExternalUserData {
|
|||
|
||||
private String lastAllNetId;
|
||||
|
||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||
private String lastClientId;
|
||||
}
|
||||
|
|
|
@ -114,5 +114,6 @@ public class ExternalUserData {
|
|||
|
||||
private String lastAllNetId;
|
||||
|
||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||
private String lastClientId;
|
||||
}
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package icu.samnyan.aqua.api.model.resp.sega.maimai2.external;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
@ -49,6 +50,7 @@ public class ExternalUserData implements Serializable {
|
|||
private int lastAllNetId;
|
||||
private int lastRegionId;
|
||||
private String lastRegionName;
|
||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||
private String lastClientId;
|
||||
private String lastCountryCode;
|
||||
private int lastSelectEMoney;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package icu.samnyan.aqua.api.model.resp.sega.ongeki.external;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
@ -124,6 +125,7 @@ public class ExternalUserData implements Serializable {
|
|||
|
||||
private int lastAllNetId;
|
||||
|
||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||
private String lastClientId;
|
||||
|
||||
private int lastUsedDeckId;
|
||||
|
|
|
@ -183,5 +183,6 @@ public class UserData implements Serializable {
|
|||
|
||||
private String lastAllNetId;
|
||||
|
||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||
private String lastClientId;
|
||||
}
|
||||
|
|
|
@ -223,6 +223,7 @@ public class Chu3UserData implements Serializable, IUserData {
|
|||
|
||||
private String lastAllNetId;
|
||||
|
||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||
private String lastClientId;
|
||||
|
||||
private String lastCountryCode;
|
||||
|
|
|
@ -117,6 +117,7 @@ public class UserData implements Serializable {
|
|||
|
||||
private String lastRegionName;
|
||||
|
||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||
private String lastClientId;
|
||||
|
||||
private String lastCountryCode;
|
||||
|
|
|
@ -70,6 +70,8 @@ class Mai2UserDetail(
|
|||
var lastAllNetId: Int = 0,
|
||||
var lastRegionId: Int = 0,
|
||||
var lastRegionName: String = "",
|
||||
|
||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||
override var lastClientId: String = "",
|
||||
var lastCountryCode: String = "",
|
||||
var lastSelectEMoney: Int = 0,
|
||||
|
|
|
@ -150,6 +150,7 @@ public class UserData implements Serializable, IUserData {
|
|||
|
||||
private int lastAllNetId;
|
||||
|
||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||
private String lastClientId;
|
||||
|
||||
private int lastUsedDeckId;
|
||||
|
|
Loading…
Reference in New Issue