com.tinypass.client.publisher.model.GlobalTemplateRecentDeployments 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 GlobalTemplateRecentDeployments {
/* The number of new inherited templates */
private Integer newInheritedTemplatesCount = null;
/* The number of content fields which may need to be customized in new inherited templates */
private Integer newContentFieldsCount = null;
public Integer getNewInheritedTemplatesCount() {
return newInheritedTemplatesCount;
}
public void setNewInheritedTemplatesCount(Integer newInheritedTemplatesCount) {
this.newInheritedTemplatesCount = newInheritedTemplatesCount;
}
public Integer getNewContentFieldsCount() {
return newContentFieldsCount;
}
public void setNewContentFieldsCount(Integer newContentFieldsCount) {
this.newContentFieldsCount = newContentFieldsCount;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class GlobalTemplateRecentDeployments {\n");
sb.append(" newInheritedTemplatesCount: ").append(newInheritedTemplatesCount).append("\n");
sb.append(" newContentFieldsCount: ").append(newContentFieldsCount).append("\n");
sb.append("}\n");
return sb.toString();
}
}