/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.content; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Mozu.Content.Contracts.PublishSetSummary ApiType DOCUMENT_HERE */ @JsonIgnoreProperties(ignoreUnknown = true) public class PublishSetSummary implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * The total number of associated items. */ protected Integer count; public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } /** * The unique identifier of the content publish set. */ protected String publishSetCode; public String getPublishSetCode() { return this.publishSetCode; } public void setPublishSetCode(String publishSetCode) { this.publishSetCode = publishSetCode; } }