Class AppsPermissionsUsersListRequest
- java.lang.Object
-
- com.slack.api.methods.request.apps.permissions.users.AppsPermissionsUsersListRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AppsPermissionsUsersListRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAppsPermissionsUsersListRequest.AppsPermissionsUsersListRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AppsPermissionsUsersListRequest.AppsPermissionsUsersListRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetCursor()Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata.IntegergetLimit()The maximum number of items to return.StringgetToken()inthashCode()voidsetCursor(String cursor)Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata.voidsetLimit(Integer limit)The maximum number of items to return.voidsetToken(String token)StringtoString()
-
-
-
Method Detail
-
builder
public static AppsPermissionsUsersListRequest.AppsPermissionsUsersListRequestBuilder builder()
-
getToken
public String getToken()
- Specified by:
getTokenin interfaceSlackApiRequest
-
getCursor
public String getCursor()
Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
-
getLimit
public Integer getLimit()
The maximum number of items to return.
-
setToken
public void setToken(String token)
-
setCursor
public void setCursor(String cursor)
Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata. Default value fetches the first "page" of the collection. See pagination for more detail.
-
setLimit
public void setLimit(Integer limit)
The maximum number of items to return.
-
canEqual
protected boolean canEqual(Object other)
-
-