All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.tinypass.client.publisher.model.CategoriesCounterModel Maven / Gradle / Ivy

There is a newer version: 16.331.0
Show newest version
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 com.tinypass.client.publisher.model.TemplateCounterModel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;

public class CategoriesCounterModel {

  /* Select section */
  private String section = null;
  

  /* The number of templates in the category */
  private String templateCount = null;
  

    private List categories = new ArrayList();
  


  public String getSection() {
    return section;
  }
  public void setSection(String section) {
    this.section = section;
  }


  public String getTemplateCount() {
    return templateCount;
  }
  public void setTemplateCount(String templateCount) {
    this.templateCount = templateCount;
  }


  public List getCategories() {
    return categories;
  }
  public void setCategories(List categories) {
    this.categories = categories;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class CategoriesCounterModel {\n");
    sb.append("  section: ").append(section).append("\n");
    sb.append("  templateCount: ").append(templateCount).append("\n");
    sb.append("  categories: ").append(categories).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy