panda.ex.zendesk.UserListResult 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 UserListResult extends ListResult {
private List users;
/**
* @return the users
*/
public List getUsers() {
return users;
}
/**
* @param users the users to set
*/
public void setUsers(List users) {
this.users = users;
}
}