org.zendesk.client.v2.model.events.PublicPrivateEvent 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;
/**
* @author stephenc
* @since 05/04/2013 11:53
*/
abstract class PublicPrivateEvent extends Event {
private static final long serialVersionUID = 1L;
private Boolean publicComment;
public Boolean getPublic() {
return publicComment;
}
public void setPublic(Boolean publicComment) {
this.publicComment = publicComment;
}
@Override
public String toString() {
return "PublicPrivateEvent" + "{publicComment=" + publicComment + '}';
}
}