com.tinypass.client.publisher.model.SectionsCounters 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 SectionsCounters {
/* Select section */
private String section = null;
/* The number of templates in the category */
private Integer templateCount = null;
/* The localized section name */
private String sectionNameLocalized = null;
public String getSection() {
return section;
}
public void setSection(String section) {
this.section = section;
}
public Integer getTemplateCount() {
return templateCount;
}
public void setTemplateCount(Integer templateCount) {
this.templateCount = templateCount;
}
public String getSectionNameLocalized() {
return sectionNameLocalized;
}
public void setSectionNameLocalized(String sectionNameLocalized) {
this.sectionNameLocalized = sectionNameLocalized;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class SectionsCounters {\n");
sb.append(" section: ").append(section).append("\n");
sb.append(" templateCount: ").append(templateCount).append("\n");
sb.append(" sectionNameLocalized: ").append(sectionNameLocalized).append("\n");
sb.append("}\n");
return sb.toString();
}
}