Class AdminConversationsDisconnectSharedRequest
- java.lang.Object
-
- com.slack.api.methods.request.admin.conversations.AdminConversationsDisconnectSharedRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AdminConversationsDisconnectSharedRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/admin.conversations.disconnectShared
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdminConversationsDisconnectSharedRequest.AdminConversationsDisconnectSharedRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminConversationsDisconnectSharedRequest.AdminConversationsDisconnectSharedRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetChannelId()The channel to be disconnected from some workspaces.List<String>getLeavingTeamIds()The team to be removed from the channel.StringgetToken()Authentication token bearing required scopes.inthashCode()voidsetChannelId(String channelId)The channel to be disconnected from some workspaces.voidsetLeavingTeamIds(List<String> leavingTeamIds)The team to be removed from the channel.voidsetToken(String token)Authentication token bearing required scopes.StringtoString()
-
-
-
Method Detail
-
builder
public static AdminConversationsDisconnectSharedRequest.AdminConversationsDisconnectSharedRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest
-
getChannelId
public String getChannelId()
The channel to be disconnected from some workspaces.
-
getLeavingTeamIds
public List<String> getLeavingTeamIds()
The team to be removed from the channel. Currently only a single team id can be specified.
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.
-
setChannelId
public void setChannelId(String channelId)
The channel to be disconnected from some workspaces.
-
setLeavingTeamIds
public void setLeavingTeamIds(List<String> leavingTeamIds)
The team to be removed from the channel. Currently only a single team id can be specified.
-
canEqual
protected boolean canEqual(Object other)
-
-