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

com.ullink.slack.simpleslackapi.events.SlackEvent Maven / Gradle / Ivy

The newest version!
package com.ullink.slack.simpleslackapi.events;

public interface SlackEvent
{
    public static final SlackEvent UNKNOWN_EVENT = new SlackEvent()
    {

        @Override
        public SlackEventType getEventType()
        {
            return SlackEventType.UNKNOWN;
        }
    };
    
    SlackEventType getEventType();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy