![JAR search and dependency download from the Maven repository](/logo.png)
com.ullink.slack.simpleslackapi.events.SlackMessagePosted 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.events;
import java.util.Map;
import org.json.simple.JSONObject;
import com.ullink.slack.simpleslackapi.SlackBot;
import com.ullink.slack.simpleslackapi.SlackChannel;
import com.ullink.slack.simpleslackapi.SlackFile;
import com.ullink.slack.simpleslackapi.SlackUser;
public interface SlackMessagePosted extends SlackMessageEvent
{
String getMessageContent();
SlackUser getSender();
@Deprecated
SlackBot getBot();
SlackChannel getChannel();
SlackFile getSlackFile();
JSONObject getJsonSource();
String getTimestamp();
Map getReactions();
int getTotalCountOfReactions();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy