Class AdminAuthPolicyRemoveEntitiesRequest
- java.lang.Object
-
- com.slack.api.methods.request.admin.auth.policy.AdminAuthPolicyRemoveEntitiesRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AdminAuthPolicyRemoveEntitiesRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/admin.auth.policy.removeEntities
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdminAuthPolicyRemoveEntitiesRequest.AdminAuthPolicyRemoveEntitiesRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminAuthPolicyRemoveEntitiesRequest.AdminAuthPolicyRemoveEntitiesRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)List<String>getEntityIds()Encoded IDs of the entities you'd like to remove from the policy.StringgetEntityType()StringgetPolicyName()The name of the policy to remove entities from.StringgetToken()Authentication token bearing required scopes.inthashCode()voidsetEntityIds(List<String> entityIds)Encoded IDs of the entities you'd like to remove from the policy.voidsetEntityType(String entityType)voidsetPolicyName(String policyName)The name of the policy to remove entities from.voidsetToken(String token)Authentication token bearing required scopes.StringtoString()
-
-
-
Method Detail
-
builder
public static AdminAuthPolicyRemoveEntitiesRequest.AdminAuthPolicyRemoveEntitiesRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest- Returns:
- token string value or null
-
getEntityIds
public List<String> getEntityIds()
Encoded IDs of the entities you'd like to remove from the policy.
-
getPolicyName
public String getPolicyName()
The name of the policy to remove entities from. Currently, email_password is the only policy that may be used with this method.
-
getEntityType
public String getEntityType()
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.- Specified by:
setTokenin interfaceSlackApiRequest
-
setEntityIds
public void setEntityIds(List<String> entityIds)
Encoded IDs of the entities you'd like to remove from the policy.
-
setPolicyName
public void setPolicyName(String policyName)
The name of the policy to remove entities from. Currently, email_password is the only policy that may be used with this method.
-
setEntityType
public void setEntityType(String entityType)
-
canEqual
protected boolean canEqual(Object other)
-
-