org.telegram.api.decryptedmessage.TLDecryptedMessageActionNoop 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;
/**
* The type TL decrypted message action noop.
*/
public class TLDecryptedMessageActionNoop extends TLDecryptedMessageAction {
/**
* The constant CLASS_ID.
*/
public static final int CLASS_ID = 0xa82fdd63;
/**
* Instantiates a new TL decrypted message action noop.
*/
public TLDecryptedMessageActionNoop() {
}
@Override
public int getClassId() {
return CLASS_ID;
}
@Override
public String toString() {
return "decryptedMessageActionNoop#a82fdd63";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy