
com.ullink.slack.simpleslackapi.replies.SlackUserPresenceReply Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleslackapi Show documentation
Show all versions of simpleslackapi Show documentation
A simple API to build bot running on Slack
The newest version!
package com.ullink.slack.simpleslackapi.replies;
public class SlackUserPresenceReply extends SlackReplyImpl implements ParsedSlackReply {
private final boolean active;
public SlackUserPresenceReply(boolean ok, String error, boolean active)
{
super(ok, error);
this.active = active;
}
public boolean isActive()
{
return active;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy