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

com.zipwhip.api.response.MessageListResult Maven / Gradle / Ivy

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