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

org.telegram.api.messages.sentencrypted.TLAbsSentEncryptedMessage Maven / Gradle / Ivy

The newest version!
package org.telegram.api.messages.sentencrypted;

import org.telegram.api.encrypted.file.TLAbsEncryptedFile;
import org.telegram.tl.TLObject;

/**
 * The type TL abs sent encrypted message.
 */
public abstract class TLAbsSentEncryptedMessage extends TLObject {
    /**
     * The Date.
     */
    protected int date;
    /**
     * The File.
     */
    protected TLAbsEncryptedFile file;

    /**
     * Instantiates a new TL abs sent encrypted message.
     */
    protected TLAbsSentEncryptedMessage() {
        super();
    }

    /**
     * Gets date.
     *
     * @return the date
     */
    public int getDate() {
        return this.date;
    }

    /**
     * Sets date.
     *
     * @param value the value
     */
    public void setDate(int value) {
        this.date = value;
    }

    /**
     * Gets file.
     *
     * @return the file
     */
    public TLAbsEncryptedFile getFile() {
        return this.file;
    }

    /**
     * Sets file.
     *
     * @param file the file
     */
    public void setFile(TLAbsEncryptedFile file) {
        this.file = file;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy