org.zendesk.client.v2.model.events.CommentPrivacyChangeEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zendesk-java-client Show documentation
Show all versions of zendesk-java-client Show documentation
Java client for the Zendesk API
The newest version!
package org.zendesk.client.v2.model.events;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* @author stephenc
* @since 05/04/2013 11:55
*/
public class CommentPrivacyChangeEvent extends PublicPrivateEvent {
private static final long serialVersionUID = 1L;
private Long commentId;
@JsonProperty("comment_id")
public Long getCommentId() {
return commentId;
}
public void setCommentId(Long commentId) {
this.commentId = commentId;
}
@Override
public String toString() {
return "CommentPrivacyChangeEvent" + "{commentId=" + commentId + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy