Class ReactionsRemoveRequest
- java.lang.Object
-
- com.slack.api.methods.request.reactions.ReactionsRemoveRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class ReactionsRemoveRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classReactionsRemoveRequest.ReactionsRemoveRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReactionsRemoveRequest.ReactionsRemoveRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetChannel()Channel where the message to remove reaction from was posted.StringgetFile()File to remove reaction from.StringgetFileComment()File comment to remove reaction from.StringgetName()Reaction (emoji) name.StringgetTimestamp()Timestamp of the message to remove reaction from.StringgetToken()Authentication token.inthashCode()voidsetChannel(String channel)Channel where the message to remove reaction from was posted.voidsetFile(String file)File to remove reaction from.voidsetFileComment(String fileComment)File comment to remove reaction from.voidsetName(String name)Reaction (emoji) name.voidsetTimestamp(String timestamp)Timestamp of the message to remove reaction from.voidsetToken(String token)Authentication token.StringtoString()
-
-
-
Method Detail
-
builder
public static ReactionsRemoveRequest.ReactionsRemoveRequestBuilder builder()
-
getToken
public String getToken()
Authentication token. Requires scope: `reactions:write`- Specified by:
getTokenin interfaceSlackApiRequest
-
getName
public String getName()
Reaction (emoji) name.
-
getFile
public String getFile()
File to remove reaction from.
-
getFileComment
public String getFileComment()
File comment to remove reaction from.
-
getChannel
public String getChannel()
Channel where the message to remove reaction from was posted.
-
getTimestamp
public String getTimestamp()
Timestamp of the message to remove reaction from.
-
setToken
public void setToken(String token)
Authentication token. Requires scope: `reactions:write`
-
setName
public void setName(String name)
Reaction (emoji) name.
-
setFile
public void setFile(String file)
File to remove reaction from.
-
setFileComment
public void setFileComment(String fileComment)
File comment to remove reaction from.
-
setChannel
public void setChannel(String channel)
Channel where the message to remove reaction from was posted.
-
setTimestamp
public void setTimestamp(String timestamp)
Timestamp of the message to remove reaction from.
-
canEqual
protected boolean canEqual(Object other)
-
-