Class AdminAppsRestrictedListRequest
- All Implemented Interfaces:
SlackApiRequest
public class AdminAppsRestrictedListRequest extends java.lang.Object implements SlackApiRequest
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdminAppsRestrictedListRequest.AdminAppsRestrictedListRequestBuilder -
Method Summary
Modifier and Type Method Description static AdminAppsRestrictedListRequest.AdminAppsRestrictedListRequestBuilderbuilder()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 pagejava.lang.StringgetEnterpriseId()Org Id.java.lang.IntegergetLimit()The maximum number of items to return.java.lang.StringgetTeamId()Workspace Id.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 pagevoidsetEnterpriseId(java.lang.String enterpriseId)Org Id.voidsetLimit(java.lang.Integer limit)The maximum number of items to return.voidsetTeamId(java.lang.String teamId)Workspace Id.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
-
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()The maximum number of items to return. Must be between 1 - 1000 both inclusive. -
getEnterpriseId
public java.lang.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 java.lang.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.
-
setToken
public void setToken(java.lang.String token)Authentication token bearing required scopes. -
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)The maximum number of items to return. Must be between 1 - 1000 both inclusive. -
setEnterpriseId
public void setEnterpriseId(java.lang.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(java.lang.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.
-
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
-