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

org.telegram.api.messages.TLAbsMessages Maven / Gradle / Ivy

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