com.podio.comment.CommentCreate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
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;
}
}