com.siftscience.model.BaseResponseBody Maven / Gradle / Ivy
The newest version!
package com.siftscience.model;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import static com.siftscience.model.ApplyDecisionFieldSet.DecisionSource;
import com.siftscience.model.ApplyDecisionFieldSet.DecisionSource.DecisionSourceDeserializer;
import com.siftscience.model.ApplyDecisionFieldSet.DecisionSource.DecisionSourceSerializer;
public abstract class BaseResponseBody> {
// This static gson instance is used to deserialize JSON responses from all Sift APIs.
protected static Gson gson = new GsonBuilder()
.excludeFieldsWithoutExposeAnnotation()
.registerTypeAdapter(DecisionSource.class,
new DecisionSourceDeserializer())
.registerTypeAdapter(DecisionSource.class,
new DecisionSourceSerializer())
.create();
@Expose @SerializedName("status") private Integer status;
@Expose @SerializedName("error_message") private String errorMessage;
public Integer getStatus() {
return status;
}
protected T setStatus(Integer status) {
this.status = status;
return (T) this;
}
public String getErrorMessage() {
return errorMessage;
}
protected T setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return (T) this;
}
public String toJson() {
return gson.toJson(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy