org.telegram.api.input.bot.TLInputBotInlineMessageId 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.input.bot;
import org.telegram.tl.StreamingUtils;
import org.telegram.tl.TLContext;
import org.telegram.tl.TLObject;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* @author Ruben Bermudez
* @version 1.0
* @brief TODO
* @date 09 of April of 2016
*/
public class TLInputBotInlineMessageId extends TLObject {
public static final int CLASS_ID = 0x890c3d89;
private int dcId;
private long id;
private long accessHash;
public TLInputBotInlineMessageId() {
super();
}
@Override
public int getClassId() {
return CLASS_ID;
}
public int getDcId() {
return dcId;
}
public long getId() {
return id;
}
public long getAccessHash() {
return accessHash;
}
@Override
public void serializeBody(OutputStream stream) throws IOException {
StreamingUtils.writeInt(dcId, stream);
StreamingUtils.writeLong(id, stream);
StreamingUtils.writeLong(accessHash, stream);
}
@Override
public void deserializeBody(InputStream stream, TLContext context) throws IOException {
dcId = StreamingUtils.readInt(stream);
id = StreamingUtils.readLong(stream);
accessHash = StreamingUtils.readLong(stream);
}
@Override
public String toString() {
return "inputBotInlineMessageID#890c3d89";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy