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

com.manywho.sdk.api.social.MessageList Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package com.manywho.sdk.api.social;

import java.util.ArrayList;
import java.util.List;

public class MessageList {
    private List messages = new ArrayList<>();
    private String nextPage;

    public List getMessages() {
        return messages;
    }

    public MessageList setMessages(List messages) {
        this.messages = messages;
        return this;
    }

    public String getNextPage() {
        return nextPage;
    }

    public MessageList setNextPage(String nextPage) {
        this.nextPage = nextPage;
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy