Class AdminAuthPolicyGetEntitiesRequest
java.lang.Object
com.slack.api.methods.request.admin.auth.policy.AdminAuthPolicyGetEntitiesRequest
- All Implemented Interfaces:
SlackApiRequest
public class AdminAuthPolicyGetEntitiesRequest extends java.lang.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
Modifier and Type Method Description static AdminAuthPolicyGetEntitiesRequest.AdminAuthPolicyGetEntitiesRequestBuilderbuilder()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 page.java.lang.StringgetEntityType()java.lang.IntegergetLimit()The maximum number of items to return.java.lang.StringgetPolicyName()The name of the policy to fetch entities for.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 page.voidsetEntityType(java.lang.String entityType)voidsetLimit(java.lang.Integer limit)The maximum number of items to return.voidsetPolicyName(java.lang.String policyName)The name of the policy to fetch entities for.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
-
getEntityType
public java.lang.String getEntityType() -
getPolicyName
public java.lang.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 java.lang.Integer getLimit()The maximum number of items to return. Must be between 1 and 1000, both inclusive. Default: 1000 -
getCursor
public java.lang.String getCursor()Set cursor to next_cursor returned by the previous call to list items in the next page. -
setToken
public void setToken(java.lang.String token)Authentication token bearing required scopes. -
setEntityType
public void setEntityType(java.lang.String entityType) -
setPolicyName
public void setPolicyName(java.lang.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(java.lang.Integer limit)The maximum number of items to return. Must be between 1 and 1000, both inclusive. Default: 1000 -
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. -
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
-