org.gmjm.slack.api.rtm.Self Maven / Gradle / Ivy
package org.gmjm.slack.api.rtm;
/**
* EXPERIMENTAL: This feature is still in development, and the interfaces may change upon official release.
*
* The Self object contains a small amount of information concerning the connecting user.
* https://api.slack.com/methods/rtm.connect
*/
public interface Self {
/**
* The ID of the connecting user.
* @return ID of the connecting user.
*/
String getId();
/**
* The name of the connecting user.
* @return Name of the connecting user.
*/
String getName();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy