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

org.telegram.api.update.TLUpdateChannelTooLong Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
package org.telegram.api.update;

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 update channel too long
 */
public class TLUpdateChannelTooLong extends TLAbsUpdate {
    /**
     * The constant CLASS_ID.
     */
    public static final int CLASS_ID = 0xeb0467fb;

    private static final int FLAG_PTS = 0x00000001; // 0

    private int flags;
    private int channelId;
    private int pts;

    /**
     * Instantiates a new TL update channel too long.
     */
    public TLUpdateChannelTooLong() {
        super();
    }

    public int getClassId() {
        return CLASS_ID;
    }

    public int getChannelId() {
        return channelId;
    }

    public void setChannelId(int channelId) {
        this.channelId = channelId;
    }

    @Override
    public int getPts() {
        return pts;
    }

    public void setPts(int pts) {
        this.pts = pts;
    }

    public void serializeBody(OutputStream stream)
            throws IOException {
        StreamingUtils.writeInt(this.flags, stream);
        StreamingUtils.writeInt(this.channelId, stream);
        if ((flags & FLAG_PTS) != 0) {
            StreamingUtils.writeInt(this.pts, stream);
        }
    }

    public void deserializeBody(InputStream stream, TLContext context)
            throws IOException {
        flags = StreamingUtils.readInt(stream);
        channelId = StreamingUtils.readInt(stream);
        if ((flags & FLAG_PTS) != 0) {
            pts = StreamingUtils.readInt(stream);
        }
    }

    public String toString() {
        return "update.TLUpdateChannelTooLong#eb0467fb";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy