com.messagebird.objects.MessageListBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of messagebird-api Show documentation
Show all versions of messagebird-api Show documentation
The MessageBird API provides an API to the MessageBird SMS, Chat and Voice services located at https://www.messagebird.com.
package com.messagebird.objects;
import java.util.List;
/**
* Base class for retrieval of message lists
*
* Created by rvt on 1/8/15.
*/
public class MessageListBase {
private Integer offset;
private Integer limit;
private Integer totalCount;
private Links links;
public MessageListBase() {
}
@Override
public String toString() {
return "MessageListBase{" +
"offset=" + offset +
", limit=" + limit +
", totalCount=" + totalCount +
", links=" + links +
", items=" + items +
'}';
}
private List items;
public Integer getOffset() {
return offset;
}
public Integer getLimit() {
return limit;
}
public Integer getTotalCount() {
return totalCount;
}
public Links getLinks() {
return links;
}
public List getItems() {
return items;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy