Class AdminUsersListRequest
- java.lang.Object
-
- com.slack.api.methods.request.admin.users.AdminUsersListRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AdminUsersListRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/admin.users.list
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdminUsersListRequest.AdminUsersListRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminUsersListRequest.AdminUsersListRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetCursor()Set cursor to next_cursor returned by the previous call to list items in the next page.IntegergetLimit()Limit for how many users to be retrieved per pageStringgetTeamId()The ID (T1234) of the workspace.StringgetToken()Authentication token bearing required scopes.inthashCode()voidsetCursor(String cursor)Set cursor to next_cursor returned by the previous call to list items in the next page.voidsetLimit(Integer limit)Limit for how many users to be retrieved per pagevoidsetTeamId(String teamId)The ID (T1234) of the workspace.voidsetToken(String token)Authentication token bearing required scopes.StringtoString()
-
-
-
Method Detail
-
builder
public static AdminUsersListRequest.AdminUsersListRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest
-
getTeamId
public String getTeamId()
The ID (T1234) of the workspace.
-
getCursor
public String getCursor()
Set cursor to next_cursor returned by the previous call to list items in the next page.
-
getLimit
public Integer getLimit()
Limit for how many users to be retrieved per page
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.
-
setTeamId
public void setTeamId(String teamId)
The ID (T1234) of the workspace.
-
setCursor
public void setCursor(String cursor)
Set cursor to next_cursor returned by the previous call to list items in the next page.
-
setLimit
public void setLimit(Integer limit)
Limit for how many users to be retrieved per page
-
canEqual
protected boolean canEqual(Object other)
-
-