com.zipwhip.api.response.MessageListResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zipwhip-api Show documentation
Show all versions of zipwhip-api Show documentation
Java client to support applications powered by the Zipwhip Cloud
The newest version!
package com.zipwhip.api.response;
import com.zipwhip.api.dto.Message;
import java.util.List;
/**
* Created with IntelliJ IDEA.
* User: jed
* Date: 6/6/12
* Time: 11:56 AM
*/
public class MessageListResult {
private List messages;
private int start;
private int limit;
private int total;
private int size;
public List getMessages() {
return messages;
}
public void setMessages(List messages) {
this.messages = messages;
}
public int getStart() {
return start;
}
public void setStart(int start) {
this.start = start;
}
public int getLimit() {
return limit;
}
public void setLimit(int limit) {
this.limit = limit;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public int getSize() {
return size;
}
public void setSize(int size) {
this.size = size;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy