com.tinypass.client.publisher.model.OfferTemplateHistory 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 com.tinypass.client.publisher.model.OfferTemplateSubHistory;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
public class OfferTemplateHistory {
/* The history content */
private String historyContent = null;
/* The template history comment */
private String historyComment = null;
/* The template history event */
private String offerTemplateHistoryEvent = null;
/* The template ID */
private String offerTemplateId = null;
private List historyList = new ArrayList();
public String getHistoryContent() {
return historyContent;
}
public void setHistoryContent(String historyContent) {
this.historyContent = historyContent;
}
public String getHistoryComment() {
return historyComment;
}
public void setHistoryComment(String historyComment) {
this.historyComment = historyComment;
}
public String getOfferTemplateHistoryEvent() {
return offerTemplateHistoryEvent;
}
public void setOfferTemplateHistoryEvent(String offerTemplateHistoryEvent) {
this.offerTemplateHistoryEvent = offerTemplateHistoryEvent;
}
public String getOfferTemplateId() {
return offerTemplateId;
}
public void setOfferTemplateId(String offerTemplateId) {
this.offerTemplateId = offerTemplateId;
}
public List getHistoryList() {
return historyList;
}
public void setHistoryList(List historyList) {
this.historyList = historyList;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OfferTemplateHistory {\n");
sb.append(" historyContent: ").append(historyContent).append("\n");
sb.append(" historyComment: ").append(historyComment).append("\n");
sb.append(" offerTemplateHistoryEvent: ").append(offerTemplateHistoryEvent).append("\n");
sb.append(" offerTemplateId: ").append(offerTemplateId).append("\n");
sb.append(" historyList: ").append(historyList).append("\n");
sb.append("}\n");
return sb.toString();
}
}