com.ullink.slack.simpleslackapi.SlackChannel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleslackapi-lib Show documentation
Show all versions of simpleslackapi-lib Show documentation
A simple API to build bot running on Slack
The newest version!
package com.ullink.slack.simpleslackapi;
import java.util.Collection;
public interface SlackChannel
{
public enum SlackChannelType {
PUBLIC_CHANNEL, PRIVATE_GROUP, INSTANT_MESSAGING
}
String getId();
String getName();
Collection getMembers();
String getTopic();
String getPurpose();
boolean isDirect();
SlackChannelType getType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy