com.siftscience.model.AbuseScore Maven / Gradle / Ivy
The newest version!
package com.siftscience.model;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.List;
import java.util.Map;
public class AbuseScore {
@Expose @SerializedName("score") private Double score;
@Expose @SerializedName("reasons") private List reasons;
@Expose @SerializedName("percentiles") private Map percentiles;
@Expose @SerializedName("status") private int status;
@Expose @SerializedName("error_message") private String errorMessage;
@Expose @SerializedName("time") private long time;
public Double getScore() {
return score;
}
public AbuseScore setScore(Double score) {
this.score = score;
return this;
}
public List getReasons() {
return reasons;
}
public AbuseScore setReasons(List reasons) {
this.reasons = reasons;
return this;
}
public int getStatus() {
return status;
}
public AbuseScore setStatus(int status) {
this.status = status;
return this;
}
public String getErrorMessage() {
return errorMessage;
}
public AbuseScore setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public long getTime() {
return time;
}
public AbuseScore setTime(long time) {
this.time = time;
return this;
}
public Map getPercentiles() {
return percentiles;
}
public void setPercentiles(Map percentiles) {
this.percentiles = percentiles;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy