public class MemberLeftChannelEvent extends Object implements Event
The provided user value is a user ID belonging to the user that joined the channel.
The channel value is the ID for a public channel or private channel (AKA group).
The channel_type value is a single letter indicating the type of channel used in channel:
C - typically a public channel G - private channels (or groups) return this channel_type The team identifies which workspace the user is from.
This event is supported as a bot user subscription in the Events API. Workspace event subscriptions are also available for tokens holding at least one of the channels:read or groups:read scopes. Which events your app will receive depends on the scopes and their context. For instance, you'll only receive member_left_channel events for private channels if your app has the groups:read permission.
https://api.slack.com/events/member_left_channel
| Constructor and Description |
|---|
MemberLeftChannelEvent() |
| Modifier and Type | Method and Description |
|---|---|
protected boolean |
canEqual(Object other) |
boolean |
equals(Object o) |
String |
getChannel() |
String |
getChannelType() |
String |
getEventTs() |
String |
getTeam() |
String |
getType() |
String |
getUser() |
int |
hashCode() |
void |
setChannel(String channel) |
void |
setChannelType(String channelType) |
void |
setEventTs(String eventTs) |
void |
setTeam(String team) |
void |
setUser(String user) |
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitgetSubtypepublic static final String TYPE_NAME
public String getUser()
public String getChannel()
public String getChannelType()
public String getTeam()
public String getEventTs()
public void setUser(String user)
public void setChannel(String channel)
public void setChannelType(String channelType)
public void setTeam(String team)
public void setEventTs(String eventTs)
protected boolean canEqual(Object other)
Copyright © 2020. All rights reserved.