com.tinypass.client.publisher.model.OfferTemplateRevision 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.User;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.Date;
public class OfferTemplateRevision {
/* The template ID */
private String offerTemplateId = null;
/* Is template token type */
private String tokenType = null;
/* The application ID */
private String aid = null;
/* The name */
private String name = null;
/* The description */
private String description = null;
/* Whether the object is deleted */
private Boolean deleted = null;
/* The creation date */
private Integer createDate = null;
private User createBy = null;
/* The update date */
private Integer updateDate = null;
private User updateBy = null;
/* publish_date */
private Integer publishDate = null;
/* The version */
private Integer version = null;
/* The type */
private String type = null;
/* The type */
private String typeId = null;
/* Published or not */
private Boolean isPublished = null;
/* Loaded conentent or not */
private Boolean contentLoaded = null;
/* HTML */
private String content1Type = null;
/* CSS */
private String content2Type = null;
/* content1_value */
private String content1Value = null;
/* content2_value */
private String content2Value = null;
public String getOfferTemplateId() {
return offerTemplateId;
}
public void setOfferTemplateId(String offerTemplateId) {
this.offerTemplateId = offerTemplateId;
}
public String getTokenType() {
return tokenType;
}
public void setTokenType(String tokenType) {
this.tokenType = tokenType;
}
public String getAid() {
return aid;
}
public void setAid(String aid) {
this.aid = aid;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Boolean getDeleted() {
return deleted;
}
public void setDeleted(Boolean deleted) {
this.deleted = deleted;
}
public Integer getCreateDate() {
return createDate;
}
public void setCreateDate(Integer createDate) {
this.createDate = createDate;
}
public User getCreateBy() {
return createBy;
}
public void setCreateBy(User createBy) {
this.createBy = createBy;
}
public Integer getUpdateDate() {
return updateDate;
}
public void setUpdateDate(Integer updateDate) {
this.updateDate = updateDate;
}
public User getUpdateBy() {
return updateBy;
}
public void setUpdateBy(User updateBy) {
this.updateBy = updateBy;
}
public Integer getPublishDate() {
return publishDate;
}
public void setPublishDate(Integer publishDate) {
this.publishDate = publishDate;
}
public Integer getVersion() {
return version;
}
public void setVersion(Integer version) {
this.version = version;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getTypeId() {
return typeId;
}
public void setTypeId(String typeId) {
this.typeId = typeId;
}
public Boolean getIsPublished() {
return isPublished;
}
public void setIsPublished(Boolean isPublished) {
this.isPublished = isPublished;
}
public Boolean getContentLoaded() {
return contentLoaded;
}
public void setContentLoaded(Boolean contentLoaded) {
this.contentLoaded = contentLoaded;
}
public String getContent1Type() {
return content1Type;
}
public void setContent1Type(String content1Type) {
this.content1Type = content1Type;
}
public String getContent2Type() {
return content2Type;
}
public void setContent2Type(String content2Type) {
this.content2Type = content2Type;
}
public String getContent1Value() {
return content1Value;
}
public void setContent1Value(String content1Value) {
this.content1Value = content1Value;
}
public String getContent2Value() {
return content2Value;
}
public void setContent2Value(String content2Value) {
this.content2Value = content2Value;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OfferTemplateRevision {\n");
sb.append(" offerTemplateId: ").append(offerTemplateId).append("\n");
sb.append(" tokenType: ").append(tokenType).append("\n");
sb.append(" aid: ").append(aid).append("\n");
sb.append(" name: ").append(name).append("\n");
sb.append(" description: ").append(description).append("\n");
sb.append(" deleted: ").append(deleted).append("\n");
sb.append(" createDate: ").append(createDate).append("\n");
sb.append(" createBy: ").append(createBy).append("\n");
sb.append(" updateDate: ").append(updateDate).append("\n");
sb.append(" updateBy: ").append(updateBy).append("\n");
sb.append(" publishDate: ").append(publishDate).append("\n");
sb.append(" version: ").append(version).append("\n");
sb.append(" type: ").append(type).append("\n");
sb.append(" typeId: ").append(typeId).append("\n");
sb.append(" isPublished: ").append(isPublished).append("\n");
sb.append(" contentLoaded: ").append(contentLoaded).append("\n");
sb.append(" content1Type: ").append(content1Type).append("\n");
sb.append(" content2Type: ").append(content2Type).append("\n");
sb.append(" content1Value: ").append(content1Value).append("\n");
sb.append(" content2Value: ").append(content2Value).append("\n");
sb.append("}\n");
return sb.toString();
}
}