All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.messagebird.objects.MessageListBase Maven / Gradle / Ivy

Go to download

The MessageBird API provides an API to the MessageBird SMS, Chat and Voice services located at https://www.messagebird.com.

There is a newer version: 6.2.2
Show newest version
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