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

com.silanis.esl.sdk.IdvWorkflow Maven / Gradle / Ivy

There is a newer version: 11.59.0
Show newest version
package com.silanis.esl.sdk;

/**
 * Created by schoi on 2021-03-10.
 */
public class IdvWorkflow {

    private String id;
    private String type;
    private String tenant;
    private String desc;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getTenant() {
        return tenant;
    }

    public void setTenant(String tenant) {
        this.tenant = tenant;
    }

    public String getDesc() {
        return desc;
    }

    public void setDesc(String desc) {
        this.desc = desc;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy