com.manywho.sdk.api.social.MessageList Maven / Gradle / Ivy
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