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

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

The newest version!
package com.siftscience.model;

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

public class WorkflowRouteInfo {
    @Expose
    @SerializedName("name") private String name;

    public String getName() {
        return name;
    }

    public WorkflowRouteInfo setName(String name) {
        this.name = name;
        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy