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

org.zendesk.client.v2.model.events.CommentRedactionEvent Maven / Gradle / Ivy

The newest version!
package org.zendesk.client.v2.model.events;

import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * A word or string was redacted from a ticket comment
 *
 * @author matthewtckr
 * @see Zendesk
 *     API Documentation
 */
public class CommentRedactionEvent extends Event {

  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 "CommentRedactionEvent" + "{commentId=" + commentId + '}';
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy