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()StringgetTeamId()Required for org-wide apps.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)voidsetTeamId(String teamId)Required for org-wide apps.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()
-
getTeamId
public String getTeamId()
Required for org-wide apps.
-
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)
-
setTeamId
public void setTeamId(String teamId)
Required for org-wide apps.
-
canEqual
protected boolean canEqual(Object other)
-
-