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

org.telegram.mtproto.schedule.PrepareSchedule Maven / Gradle / Ivy

There is a newer version: 66.2
Show newest version
package org.telegram.mtproto.schedule;

/**
 * Created by Ruben Bermudez on 29.12.13.
 */
public class PrepareSchedule {
    private long delay;
    private int[] allowedContexts;
    private boolean doWait;

    public boolean isDoWait() {
        return this.doWait;
    }

    public void setDoWait(boolean doWait) {
        this.doWait = doWait;
    }

    public long getDelay() {
        return this.delay;
    }

    public void setDelay(long delay) {
        this.delay = delay;
    }

    public int[] getAllowedContexts() {
        return this.allowedContexts;
    }

    public void setAllowedContexts(int[] allowedContexts) {
        this.allowedContexts = allowedContexts;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy