com.podio.comment.Comment 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.List;
import org.codehaus.jackson.annotate.JsonProperty;
import com.podio.common.CreatedBase;
import com.podio.contact.ProfileMini;
import com.podio.file.File;
public class Comment extends CreatedBase {
/**
* The id of the comment. Can be used to update and delete the comment
*/
private int id;
/**
* The actual comment
*/
private String value;
/**
* The external id set on the comment
*/
private String externalId;
/**
* The alerts on the comment
*/
private List alerts;
/**
* The files on the comment
*/
private List files;
@JsonProperty("comment_id")
public int getId() {
return id;
}
@JsonProperty("comment_id")
public void setId(int id) {
this.id = id;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@JsonProperty("external_id")
public String getExternalId() {
return externalId;
}
@JsonProperty("external_id")
public void setExternalId(String externalId) {
this.externalId = externalId;
}
public List getAlerts() {
return alerts;
}
public void setAlerts(List alerts) {
this.alerts = alerts;
}
public List getFiles() {
return files;
}
public void setFiles(List files) {
this.files = files;
}
}