Class AdminAuthPolicyGetEntitiesRequest
- java.lang.Object
-
- com.slack.api.methods.request.admin.auth.policy.AdminAuthPolicyGetEntitiesRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AdminAuthPolicyGetEntitiesRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/admin.auth.policy.getEntities
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdminAuthPolicyGetEntitiesRequest.AdminAuthPolicyGetEntitiesRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminAuthPolicyGetEntitiesRequest.AdminAuthPolicyGetEntitiesRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetCursor()Set cursor to next_cursor returned by the previous call to list items in the next page.StringgetEntityType()IntegergetLimit()The maximum number of items to return.StringgetPolicyName()The name of the policy to fetch entities for.StringgetToken()Authentication token bearing required scopes.inthashCode()voidsetCursor(String cursor)Set cursor to next_cursor returned by the previous call to list items in the next page.voidsetEntityType(String entityType)voidsetLimit(Integer limit)The maximum number of items to return.voidsetPolicyName(String policyName)The name of the policy to fetch entities for.voidsetToken(String token)Authentication token bearing required scopes.StringtoString()
-
-
-
Method Detail
-
builder
public static AdminAuthPolicyGetEntitiesRequest.AdminAuthPolicyGetEntitiesRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest- Returns:
- token string value or null
-
getEntityType
public String getEntityType()
-
getPolicyName
public String getPolicyName()
The name of the policy to fetch entities for. Currently, email_password is the only policy that may be used with this method.
-
getLimit
public Integer getLimit()
The maximum number of items to return. Must be between 1 and 1000, both inclusive. Default: 1000
-
getCursor
public String getCursor()
Set cursor to next_cursor returned by the previous call to list items in the next page.
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.- Specified by:
setTokenin interfaceSlackApiRequest
-
setEntityType
public void setEntityType(String entityType)
-
setPolicyName
public void setPolicyName(String policyName)
The name of the policy to fetch entities for. Currently, email_password is the only policy that may be used with this method.
-
setLimit
public void setLimit(Integer limit)
The maximum number of items to return. Must be between 1 and 1000, both inclusive. Default: 1000
-
setCursor
public void setCursor(String cursor)
Set cursor to next_cursor returned by the previous call to list items in the next page.
-
canEqual
protected boolean canEqual(Object other)
-
-