com.tinypass.client.anon.model.LinkedTermPageViewContentParams Maven / Gradle / Ivy
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();
}
}