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

org.telegram.api.messages.dialogs.TLAbsDialogs Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
package org.telegram.api.messages.dialogs;

import org.telegram.api.chat.TLAbsChat;
import org.telegram.api.dialog.TLDialog;
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 dialogs.
 */
public abstract class TLAbsDialogs extends TLObject {
    /**
     * The Dialogs.
     */
    protected TLVector dialogs;
    /**
     * The Messages.
     */
    protected TLVector messages;
    /**
     * The Chats.
     */
    protected TLVector chats;
    /**
     * The Users.
     */
    protected TLVector users;

    /**
     * Instantiates a new TL abs dialogs.
     */
    protected TLAbsDialogs() {
        super();
    }

    /**
     * Gets dialogs.
     *
     * @return the dialogs
     */
    public TLVector getDialogs() {
        return this.dialogs;
    }

    /**
     * Sets dialogs.
     *
     * @param value the value
     */
    public void setDialogs(TLVector value) {
        this.dialogs = value;
    }

    /**
     * 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