Class ConversationsKickRequest
- java.lang.Object
-
- com.slack.api.methods.request.conversations.ConversationsKickRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class ConversationsKickRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classConversationsKickRequest.ConversationsKickRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConversationsKickRequest.ConversationsKickRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetChannel()ID of conversation to remove user from.StringgetToken()Authentication token.StringgetUser()User ID to be removed.inthashCode()voidsetChannel(String channel)ID of conversation to remove user from.voidsetToken(String token)Authentication token.voidsetUser(String user)User ID to be removed.StringtoString()
-
-
-
Method Detail
-
builder
public static ConversationsKickRequest.ConversationsKickRequestBuilder builder()
-
getToken
public String getToken()
Authentication token. Requires scope: `conversations:write`- Specified by:
getTokenin interfaceSlackApiRequest
-
getChannel
public String getChannel()
ID of conversation to remove user from.
-
getUser
public String getUser()
User ID to be removed.
-
setToken
public void setToken(String token)
Authentication token. Requires scope: `conversations:write`
-
setChannel
public void setChannel(String channel)
ID of conversation to remove user from.
-
setUser
public void setUser(String user)
User ID to be removed.
-
canEqual
protected boolean canEqual(Object other)
-
-