com.qcloud.cos.model.ciModel.auditing.AuditingKeywordResponse Maven / Gradle / Ivy
package com.qcloud.cos.model.ciModel.auditing;
import com.qcloud.cos.model.CiServiceResult;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamImplicit;
import java.util.List;
@XStreamAlias("Response")
public class AuditingKeywordResponse extends CiServiceResult {
@XStreamAlias("LibID")
private String libID;
@XStreamAlias("TotalCount")
private Integer totalCount;
@XStreamImplicit(itemFieldName = "Results")
private List results;
@XStreamImplicit(itemFieldName = "Keywords")
private List keywords;
public List getKeywords() {
return keywords;
}
public void setKeywords(List keywords) {
this.keywords = keywords;
}
public List getResults() {
return results;
}
public void setResults(List results) {
this.results = results;
}
public String getLibID() {
return libID;
}
public void setLibID(String libID) {
this.libID = libID;
}
public Integer getTotalCount() {
return totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy