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

com.tinypass.client.anon.model.LightOfferTemplateVersion Maven / Gradle / Ivy

There is a newer version: 16.366.0
Show newest version
package com.tinypass.client.anon.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.tinypass.client.anon.model.ExternalCss;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;

public class LightOfferTemplateVersion {

  /* The template ID */
  private String offerTemplateId = null;
  

  /* Is template token type */
  private String tokenType = null;
  

  /* The version */
  private Integer version = null;
  

  /* The type  */
  private String type = null;
  

  /* HTML */
  private String content1Type = null;
  

  /* CSS */
  private String content2Type = null;
  

  /* The content1 value */
  private String content1Value = null;
  

  /* The content2 value */
  private String content2Value = null;
  

  /* The template ID */
  private String templateId = null;
  

  /* The template version ID */
  private String templateVersionId = null;
  

  /* Whether the template is archived */
  private Boolean isOfferTemplateArchived = null;
  

  /* Whether the template variant is archived */
  private Boolean isTemplateVariantArchived = null;
  

    private List externalCssList = new ArrayList();
  


  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 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 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;
  }


  public String getTemplateId() {
    return templateId;
  }
  public void setTemplateId(String templateId) {
    this.templateId = templateId;
  }


  public String getTemplateVersionId() {
    return templateVersionId;
  }
  public void setTemplateVersionId(String templateVersionId) {
    this.templateVersionId = templateVersionId;
  }


  public Boolean getIsOfferTemplateArchived() {
    return isOfferTemplateArchived;
  }
  public void setIsOfferTemplateArchived(Boolean isOfferTemplateArchived) {
    this.isOfferTemplateArchived = isOfferTemplateArchived;
  }


  public Boolean getIsTemplateVariantArchived() {
    return isTemplateVariantArchived;
  }
  public void setIsTemplateVariantArchived(Boolean isTemplateVariantArchived) {
    this.isTemplateVariantArchived = isTemplateVariantArchived;
  }


  public List getExternalCssList() {
    return externalCssList;
  }
  public void setExternalCssList(List externalCssList) {
    this.externalCssList = externalCssList;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class LightOfferTemplateVersion {\n");
    sb.append("  offerTemplateId: ").append(offerTemplateId).append("\n");
    sb.append("  tokenType: ").append(tokenType).append("\n");
    sb.append("  version: ").append(version).append("\n");
    sb.append("  type: ").append(type).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("  templateId: ").append(templateId).append("\n");
    sb.append("  templateVersionId: ").append(templateVersionId).append("\n");
    sb.append("  isOfferTemplateArchived: ").append(isOfferTemplateArchived).append("\n");
    sb.append("  isTemplateVariantArchived: ").append(isTemplateVariantArchived).append("\n");
    sb.append("  externalCssList: ").append(externalCssList).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy