com.slack.api.model.event.HelloEvent Maven / Gradle / Ivy
package com.slack.api.model.event;
import lombok.Data;
/**
* The hello event is sent when a connection is opened to the message server.
* This allows a client to confirm the connection has been correctly opened.
*
* https://api.slack.com/events/hello
*/
@Data
public class HelloEvent implements Event {
public static final String TYPE_NAME = "hello";
private final String type = TYPE_NAME;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy