Class AdminUsersListRequest
java.lang.Object
com.slack.api.methods.request.admin.users.AdminUsersListRequest
- All Implemented Interfaces:
SlackApiRequest
public class AdminUsersListRequest extends java.lang.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
Modifier and Type Method Description static AdminUsersListRequest.AdminUsersListRequestBuilderbuilder()protected booleancanEqual(java.lang.Object other)booleanequals(java.lang.Object o)java.lang.StringgetCursor()Set cursor to next_cursor returned by the previous call to list items in the next page.java.lang.IntegergetLimit()Limit for how many users to be retrieved per pagejava.lang.StringgetTeamId()The ID (T1234) of the workspace.java.lang.StringgetToken()Authentication token bearing required scopes.inthashCode()voidsetCursor(java.lang.String cursor)Set cursor to next_cursor returned by the previous call to list items in the next page.voidsetLimit(java.lang.Integer limit)Limit for how many users to be retrieved per pagevoidsetTeamId(java.lang.String teamId)The ID (T1234) of the workspace.voidsetToken(java.lang.String token)Authentication token bearing required scopes.java.lang.StringtoString()
-
Method Details
-
builder
-
getToken
public java.lang.String getToken()Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest
-
getTeamId
public java.lang.String getTeamId()The ID (T1234) of the workspace. -
getCursor
public java.lang.String getCursor()Set cursor to next_cursor returned by the previous call to list items in the next page. -
getLimit
public java.lang.Integer getLimit()Limit for how many users to be retrieved per page -
setToken
public void setToken(java.lang.String token)Authentication token bearing required scopes. -
setTeamId
public void setTeamId(java.lang.String teamId)The ID (T1234) of the workspace. -
setCursor
public void setCursor(java.lang.String cursor)Set cursor to next_cursor returned by the previous call to list items in the next page. -
setLimit
public void setLimit(java.lang.Integer limit)Limit for how many users to be retrieved per page -
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
canEqual
protected boolean canEqual(java.lang.Object other) -
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-