model.ApplicationEntitlement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-api-client-java Show documentation
Show all versions of symphony-api-client-java Show documentation
Symphony API Client provided by Symphony Platform Solutions team
package model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class ApplicationEntitlement {
private String appId;
private String appName;
private Boolean listed;
private Boolean install;
private List products;
public String getAppId() {
return appId;
}
public void setAppId(String appId) {
this.appId = appId;
}
public String getAppName() {
return appName;
}
public void setAppName(String appName) {
this.appName = appName;
}
public Boolean getListed() {
return listed;
}
public void setListed(Boolean listed) {
this.listed = listed;
}
public Boolean getInstall() {
return install;
}
public void setInstall(Boolean install) {
this.install = install;
}
public List getProducts() {
return products;
}
public void setProducts(List products) {
this.products = products;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy