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

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

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

/**
 * The type TL abs update.
 */
public class TLFakeUpdate extends TLAbsUpdate {
    private int pts;
    private int ptsCount;

    public TLFakeUpdate() {
        super();
    }

    public void setPtsCount(int ptsCount) {
        this.ptsCount = ptsCount;
    }

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

    public int getPts() {
        return pts;
    }

    public int getPtsCount() {
        return ptsCount;
    };

    @Override
    public int getClassId() {
        return 0;
    }

    @Override
    public String toString() {
        return "fakeUpdate#0";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy