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

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

There is a newer version: 16.331.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 io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;

public class LinkedTermPageViewContentParams {

  /* When the content was published */
  private String contentCreated = null;
  

  /* The author of the content */
  private String contentAuthor = null;
  

  /* The section for the content */
  private String contentSection = null;
  

  /* The type of the content */
  private String contentType = null;
  

  /* The tags of the page */
  private List tags = new ArrayList();
  


  public String getContentCreated() {
    return contentCreated;
  }
  public void setContentCreated(String contentCreated) {
    this.contentCreated = contentCreated;
  }


  public String getContentAuthor() {
    return contentAuthor;
  }
  public void setContentAuthor(String contentAuthor) {
    this.contentAuthor = contentAuthor;
  }


  public String getContentSection() {
    return contentSection;
  }
  public void setContentSection(String contentSection) {
    this.contentSection = contentSection;
  }


  public String getContentType() {
    return contentType;
  }
  public void setContentType(String contentType) {
    this.contentType = contentType;
  }


  public List getTags() {
    return tags;
  }
  public void setTags(List tags) {
    this.tags = tags;
  }


  @Override
  public String toString()  {
    StringBuilder sb = new StringBuilder();
    sb.append("class LinkedTermPageViewContentParams {\n");
    sb.append("  contentCreated: ").append(contentCreated).append("\n");
    sb.append("  contentAuthor: ").append(contentAuthor).append("\n");
    sb.append("  contentSection: ").append(contentSection).append("\n");
    sb.append("  contentType: ").append(contentType).append("\n");
    sb.append("  tags: ").append(tags).append("\n");
    sb.append("}\n");
    return sb.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy