
com.slack.api.model.event.GroupJoinedEvent Maven / Gradle / Ivy
package com.slack.api.model.event;
import lombok.Data;
/**
* The group_joined event is sent to all connections for a user when that user joins a private channel.
*
* The channel value is the string identifier for the private channel.
*
* https://api.slack.com/events/group_joined
*/
@Data
public class GroupJoinedEvent implements Event {
public static final String TYPE_NAME = "group_joined";
private final String type = TYPE_NAME;
private Channel channel;
@Data
public static class Channel {
// TODO
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy