Class AppsPermissionsUsersListRequest
- java.lang.Object
-
- com.slack.api.methods.request.apps.permissions.users.AppsPermissionsUsersListRequest
-
- All Implemented Interfaces:
SlackApiRequest
@Deprecated public class AppsPermissionsUsersListRequest extends Object implements SlackApiRequest
Deprecated.On August 24, 2021, legacy workspace apps were retired. Workspace apps were part of a brief developer preview we elected to not fully release. Since October 2018, existing workspace apps have remained functional but on August 24, 2021 workspace apps will be retired and no longer function. - https://api.slack.com/changelog/2021-03-workspace-apps-to-retire-in-august-2021
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAppsPermissionsUsersListRequest.AppsPermissionsUsersListRequestBuilderDeprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static AppsPermissionsUsersListRequest.AppsPermissionsUsersListRequestBuilderbuilder()Deprecated.protected booleancanEqual(Object other)Deprecated.booleanequals(Object o)Deprecated.StringgetCursor()Deprecated.Paginate through collections of data by setting the cursor parameter to a next_cursor attribute returned by a previous request's response_metadata.IntegergetLimit()Deprecated.The maximum number of items to return.StringgetToken()Deprecated.Returns a token in this request object.inthashCode()Deprecated.voidsetCursor(String cursor)Deprecated.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)Deprecated.The maximum number of items to return.voidsetToken(String token)Deprecated.Updates the token in this request object.StringtoString()Deprecated.
-
-
-
Method Detail
-
builder
public static AppsPermissionsUsersListRequest.AppsPermissionsUsersListRequestBuilder builder()
Deprecated.
-
getToken
public String getToken()
Deprecated.Description copied from interface:SlackApiRequestReturns a token in this request object. If the API endpoint does not require a token (e.g., api.test), this method can return null.- Specified by:
getTokenin interfaceSlackApiRequest- Returns:
- token string value or null
-
getCursor
public String getCursor()
Deprecated.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()
Deprecated.The maximum number of items to return.
-
setToken
public void setToken(String token)
Deprecated.Description copied from interface:SlackApiRequestUpdates the token in this request object.The default implementation throws
UnsupportedOperationException. All the built-in implementing classes overrides this method in a proper way.- Specified by:
setTokenin interfaceSlackApiRequest
-
setCursor
public void setCursor(String cursor)
Deprecated.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)
Deprecated.The maximum number of items to return.
-
canEqual
protected boolean canEqual(Object other)
Deprecated.
-
-