org.telegram.mtproto.schedule.PrepareSchedule 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.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