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

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

The newest version!
package com.siftscience.model;

import java.util.List;

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

public class Warnings {
    @Expose
    @SerializedName("count")
    private Integer count;
    @Expose
    @SerializedName("items")
    private List warningItems;

    public Integer getCount() {
        return count;
    }

    public Warnings setCount(Integer count) {
        this.count = count;
        return this;
    }

    public List getWarningItems() {
        return warningItems;
    }

    public Warnings setWarningItems(List warningItems) {
        this.warningItems = warningItems;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy