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

com.podio.comment.CommentCreate Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.comment;

import java.util.Collections;
import java.util.List;

import org.codehaus.jackson.annotate.JsonProperty;

public class CommentCreate {

	/**
	 * The comment to be made
	 */
	private String value;

	/**
	 * The external id
	 */
	private String externalId;

	/**
	 * The users who should be alerted about this comment
	 */
	private List alerts;

	/**
	 * Temporary files that have been uploaded and should be attached to this
	 * comment
	 */
	private List fileIds;

	public CommentCreate(String value) {
		this(value, null, Collections. emptyList(), Collections
				. emptyList());
	}

	public CommentCreate(String value, String externalId, List alerts,
			List fileIds) {
		super();
		this.value = value;
		this.externalId = externalId;
		this.alerts = alerts;
		this.fileIds = fileIds;
	}

	public String getValue() {
		return value;
	}

	public void setValue(String value) {
		this.value = value;
	}

	@JsonProperty("external_id")
	public String getExternalId() {
		return externalId;
	}

	public void setExternalId(String externalId) {
		this.externalId = externalId;
	}

	public List getAlerts() {
		return alerts;
	}

	public void setAlerts(List alerts) {
		this.alerts = alerts;
	}

	@JsonProperty("file_ids")
	public List getFileIds() {
		return fileIds;
	}

	public void setFileIds(List fileIds) {
		this.fileIds = fileIds;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy