All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.siftscience.model.AbuseScore Maven / Gradle / Ivy

There is a newer version: 3.16.0
Show newest version
package com.siftscience.model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

import java.util.List;

public class AbuseScore {
    @Expose @SerializedName("score") private Double score;
    @Expose @SerializedName("reasons") private List reasons;
    @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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy