org.telegram.api.decryptedmessage.TLDecryptedMessageActionSetMessageTTL 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.decryptedmessage;
import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* The type TL decrypted message action set message tTL.
*/
public class TLDecryptedMessageActionSetMessageTTL extends TLDecryptedMessageAction {
/**
* The constant CLASS_ID.
*/
public static final int CLASS_ID = 0xa1733aec;
private int ttlSeconds;
/**
* Instantiates a new TL decrypted message action set message tTL.
*/
public TLDecryptedMessageActionSetMessageTTL() {
}
/**
* Instantiates a new TL decrypted message action set message tTL.
*
* @param _ttlSeconds the _ ttl seconds
*/
public TLDecryptedMessageActionSetMessageTTL(int _ttlSeconds) {
this.ttlSeconds = _ttlSeconds;
}
public int getClassId() {
return CLASS_ID;
}
/**
* Gets ttl seconds.
*
* @return the ttl seconds
*/
public int getTtlSeconds() {
return this.ttlSeconds;
}
/**
* Sets ttl seconds.
*
* @param ttlSeconds the ttl seconds
*/
public void setTtlSeconds(int ttlSeconds) {
this.ttlSeconds = ttlSeconds;
}
public void serializeBody(OutputStream stream)
throws IOException {
StreamingUtils.writeInt(this.ttlSeconds, stream);
}
public void deserializeBody(InputStream stream, TLContext context)
throws IOException {
this.ttlSeconds = StreamingUtils.readInt(stream);
}
public String toString() {
return "decryptedMessageActionSetMessageTTL#a1733aec";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy