org.zendesk.client.v2.model.events.LogMeInTranscriptEvent 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:57
*/
public class LogMeInTranscriptEvent extends Event {
private static final long serialVersionUID = 1L;
private String body;
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
@Override
public String toString() {
return "LogMeInTranscriptEvent" + "{body='" + body + '\'' + '}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy