panda.ex.zendesk.TicketListResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-tube Show documentation
Show all versions of panda-tube Show documentation
Panda Tube is a Web Service API client for WordPress XML-RPC, Google Vision API, etc.
The newest version!
package panda.ex.zendesk;
import java.util.List;
public class TicketListResult extends ListResult {
private List tickets;
/**
* @return the tickets
*/
public List getTickets() {
return tickets;
}
/**
* @param tickets the tickets to set
*/
public void setTickets(List tickets) {
this.tickets = tickets;
}
}