![JAR search and dependency download from the Maven repository](/logo.png)
com.tinypass.client.publisher.model.ResourceStats Maven / Gradle / Ivy
package com.tinypass.client.publisher.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
public class ResourceStats {
/* The resource ID */
private String rid = null;
/* The number of bundles the resource has */
private Integer numBundles = null;
/* The number of customers the resource has */
private Integer numCustomers = null;
/* The number of terms the resource has */
private Integer numTerms = null;
/* The tags of the page */
private String tags = null;
public String getRid() {
return rid;
}
public void setRid(String rid) {
this.rid = rid;
}
public Integer getNumBundles() {
return numBundles;
}
public void setNumBundles(Integer numBundles) {
this.numBundles = numBundles;
}
public Integer getNumCustomers() {
return numCustomers;
}
public void setNumCustomers(Integer numCustomers) {
this.numCustomers = numCustomers;
}
public Integer getNumTerms() {
return numTerms;
}
public void setNumTerms(Integer numTerms) {
this.numTerms = numTerms;
}
public String getTags() {
return tags;
}
public void setTags(String tags) {
this.tags = tags;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ResourceStats {\n");
sb.append(" rid: ").append(rid).append("\n");
sb.append(" numBundles: ").append(numBundles).append("\n");
sb.append(" numCustomers: ").append(numCustomers).append("\n");
sb.append(" numTerms: ").append(numTerms).append("\n");
sb.append(" tags: ").append(tags).append("\n");
sb.append("}\n");
return sb.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy