org.telegram.api.messages.sentencrypted.TLAbsSentEncryptedMessage 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
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