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

com.harium.chatbot.slack.replies.SlackUserPresenceReply Maven / Gradle / Ivy

package com.harium.chatbot.slack.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