com.github.seratch.jslack.api.model.event.TeamJoinEvent Maven / Gradle / Ivy
The newest version!
package com.github.seratch.jslack.api.model.event;
import com.github.seratch.jslack.api.model.User;
import lombok.Data;
/**
* The team_join event is sent to all connections for a workspace when a new member joins.
* Clients can use this to update their local cache of members.
*
* https://api.slack.com/events/team_join
*/
@Data
public class TeamJoinEvent implements Event {
public static final String TYPE_NAME = "team_join";
private final String type = TYPE_NAME;
private User user; // TODO: make sure the available attributes
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy