Class AuthTeamsListRequest
- java.lang.Object
-
- com.slack.api.methods.request.auth.teams.AuthTeamsListRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AuthTeamsListRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/auth.teams.list
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAuthTeamsListRequest.AuthTeamsListRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthTeamsListRequest.AuthTeamsListRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetCursor()BooleangetIncludeIcon()IntegergetLimit()StringgetToken()Returns a token in this request object.inthashCode()voidsetCursor(String cursor)voidsetIncludeIcon(Boolean includeIcon)voidsetLimit(Integer limit)voidsetToken(String token)Updates the token in this request object.StringtoString()
-
-
-
Method Detail
-
builder
public static AuthTeamsListRequest.AuthTeamsListRequestBuilder builder()
-
getToken
public String getToken()
Description copied from interface:SlackApiRequestReturns a token in this request object. If the API endpoint does not require a token (e.g., api.test), this method can return null.- Specified by:
getTokenin interfaceSlackApiRequest- Returns:
- token string value or null
-
getCursor
public String getCursor()
-
getLimit
public Integer getLimit()
-
getIncludeIcon
public Boolean getIncludeIcon()
-
setToken
public void setToken(String token)
Description copied from interface:SlackApiRequestUpdates the token in this request object.The default implementation throws
UnsupportedOperationException. All the built-in implementing classes overrides this method in a proper way.- Specified by:
setTokenin interfaceSlackApiRequest
-
setCursor
public void setCursor(String cursor)
-
setLimit
public void setLimit(Integer limit)
-
setIncludeIcon
public void setIncludeIcon(Boolean includeIcon)
-
canEqual
protected boolean canEqual(Object other)
-
-