org.zendesk.client.v2.model.comments.VoiceComment 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.comments;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.zendesk.client.v2.model.Comment;
public class VoiceComment extends Comment {
private VoiceCommentData data;
@JsonProperty("data")
public VoiceCommentData getData() {
return data;
}
}