Class ReactionsListRequest
- java.lang.Object
-
- com.slack.api.methods.request.reactions.ReactionsListRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class ReactionsListRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classReactionsListRequest.ReactionsListRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReactionsListRequest.ReactionsListRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)IntegergetCount()IntegergetPage()StringgetToken()Authentication token.StringgetUser()Show reactions made by this user.inthashCode()booleanisFull()If true always return the complete reaction list.voidsetCount(Integer count)voidsetFull(boolean full)If true always return the complete reaction list.voidsetPage(Integer page)voidsetToken(String token)Authentication token.voidsetUser(String user)Show reactions made by this user.StringtoString()
-
-
-
Method Detail
-
builder
public static ReactionsListRequest.ReactionsListRequestBuilder builder()
-
getToken
public String getToken()
Authentication token. Requires scope: `reactions:read`- Specified by:
getTokenin interfaceSlackApiRequest
-
getUser
public String getUser()
Show reactions made by this user. Defaults to the authed user.
-
isFull
public boolean isFull()
If true always return the complete reaction list.
-
getCount
public Integer getCount()
-
getPage
public Integer getPage()
-
setToken
public void setToken(String token)
Authentication token. Requires scope: `reactions:read`
-
setUser
public void setUser(String user)
Show reactions made by this user. Defaults to the authed user.
-
setFull
public void setFull(boolean full)
If true always return the complete reaction list.
-
setCount
public void setCount(Integer count)
-
setPage
public void setPage(Integer page)
-
canEqual
protected boolean canEqual(Object other)
-
-