org.telegram.api.messages.TLAbsMessages Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of telegramapi Show documentation
Show all versions of telegramapi Show documentation
Java library to create Telegram Clients
package org.telegram.api.messages;
import org.telegram.api.chat.TLAbsChat;
import org.telegram.api.message.TLAbsMessage;
import org.telegram.api.user.TLAbsUser;
import org.telegram.tl.TLObject;
import org.telegram.tl.TLVector;
/**
* The type TL abs messages.
*/
public abstract class TLAbsMessages extends TLObject {
/**
* The Messages.
*/
protected TLVector messages;
/**
* The Chats.
*/
protected TLVector chats;
/**
* The Users.
*/
protected TLVector users;
/**
* Gets messages.
*
* @return the messages
*/
public TLVector getMessages() {
return this.messages;
}
/**
* Sets messages.
*
* @param value the value
*/
public void setMessages(TLVector value) {
this.messages = value;
}
/**
* Gets chats.
*
* @return the chats
*/
public TLVector getChats() {
return this.chats;
}
/**
* Sets chats.
*
* @param value the value
*/
public void setChats(TLVector value) {
this.chats = value;
}
/**
* Gets users.
*
* @return the users
*/
public TLVector getUsers() {
return this.users;
}
/**
* Sets users.
*
* @param value the value
*/
public void setUsers(TLVector value) {
this.users = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy