com.genesys.provisioning.models.Results Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of provisioning Show documentation
Show all versions of provisioning Show documentation
A Java library to interface to Genesys Provisioning public API
package com.genesys.provisioning.models;
import java.util.List;
public class Results {
private List results = null;
private Integer totalCount = null;
public Results() {
}
public List getResults() {
return results;
}
public void setResults(List results) {
this.results = results;
}
public Integer getTotalCount() {
return totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
}