com.slack.api.model.event.ImOpenEvent Maven / Gradle / Ivy
package com.slack.api.model.event;
import lombok.Data;
/**
* The im_open event is sent to all connections for a user when a direct message channel is opened by that user.
*
* https://api.slack.com/events/im_open
*/
@Data
public class ImOpenEvent implements Event {
public static final String TYPE_NAME = "im_open";
private final String type = TYPE_NAME;
private String channel;
private String user;
private String eventTs;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy