Class AdminAppsRestrictedListRequest
- java.lang.Object
-
- com.slack.api.methods.request.admin.apps.AdminAppsRestrictedListRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AdminAppsRestrictedListRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/admin.apps.restricted.list
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AdminAppsRestrictedListRequest.AdminAppsRestrictedListRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminAppsRestrictedListRequest.AdminAppsRestrictedListRequestBuilder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
Boolean
getCertified()
Limit the results to only include certified apps.String
getCursor()
Set cursor to next_cursor returned by the previous call to list items in the next pageString
getEnterpriseId()
Org Id.Integer
getLimit()
The maximum number of items to return.String
getTeamId()
Workspace Id.String
getToken()
Authentication token bearing required scopes.int
hashCode()
void
setCertified(Boolean certified)
Limit the results to only include certified apps.void
setCursor(String cursor)
Set cursor to next_cursor returned by the previous call to list items in the next pagevoid
setEnterpriseId(String enterpriseId)
Org Id.void
setLimit(Integer limit)
The maximum number of items to return.void
setTeamId(String teamId)
Workspace Id.void
setToken(String token)
Authentication token bearing required scopes.String
toString()
-
-
-
Method Detail
-
builder
public static AdminAppsRestrictedListRequest.AdminAppsRestrictedListRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getToken
in interfaceSlackApiRequest
- Returns:
- token string value or null
-
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()
The maximum number of items to return. Must be between 1 - 1000 both inclusive.
-
getEnterpriseId
public String getEnterpriseId()
Org Id.Note: enterprise_id and team_id cannot be used together. Passing enterprise_id will return the list of org-wide approved apps. Passing team_id will return the apps approved for that specific workspace.
-
getTeamId
public String getTeamId()
Workspace Id.Note: enterprise_id and team_id cannot be used together. Passing enterprise_id will return the list of org-wide approved apps. Passing team_id will return the apps approved for that specific workspace.
-
getCertified
public Boolean getCertified()
Limit the results to only include certified apps. When false, no certified apps will appear in the result
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.- Specified by:
setToken
in interfaceSlackApiRequest
-
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)
The maximum number of items to return. Must be between 1 - 1000 both inclusive.
-
setEnterpriseId
public void setEnterpriseId(String enterpriseId)
Org Id.Note: enterprise_id and team_id cannot be used together. Passing enterprise_id will return the list of org-wide approved apps. Passing team_id will return the apps approved for that specific workspace.
-
setTeamId
public void setTeamId(String teamId)
Workspace Id.Note: enterprise_id and team_id cannot be used together. Passing enterprise_id will return the list of org-wide approved apps. Passing team_id will return the apps approved for that specific workspace.
-
setCertified
public void setCertified(Boolean certified)
Limit the results to only include certified apps. When false, no certified apps will appear in the result
-
canEqual
protected boolean canEqual(Object other)
-
-