org.zendesk.client.v2.model.TicketResult 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;
public class TicketResult {
private Ticket ticket;
public TicketResult() {}
public TicketResult(Ticket ticket) {
this.ticket = ticket;
}
public Ticket getTicket() {
return ticket;
}
public void setTicket(Ticket ticket) {
this.ticket = ticket;
}
}