
com.podio.comment.Comment Maven / Gradle / Ivy
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 {
private static final long serialVersionUID = 1L;
/**
* 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy