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

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

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

import com.siftscience.FieldSet;

public class UnlabelFieldSet extends FieldSet {
    private String userId;
    private String abuseType;

    public String getUserId() {
        return userId;
    }

    public UnlabelFieldSet setUserId(String userId) {
        this.userId = userId;
        return this;
    }

    public String getAbuseType() {
        return abuseType;
    }

    public UnlabelFieldSet setAbuseType(String abuseType) {
        this.abuseType = abuseType;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy