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 class
AuthTeamsListRequest.AuthTeamsListRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuthTeamsListRequest.AuthTeamsListRequestBuilder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getCursor()
Boolean
getIncludeIcon()
Integer
getLimit()
String
getToken()
Returns a token in this request object.int
hashCode()
void
setCursor(String cursor)
void
setIncludeIcon(Boolean includeIcon)
void
setLimit(Integer limit)
void
setToken(String token)
Updates the token in this request object.String
toString()
-
-
-
Method Detail
-
builder
public static AuthTeamsListRequest.AuthTeamsListRequestBuilder builder()
-
getToken
public String getToken()
Description copied from interface:SlackApiRequest
Returns 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:
getToken
in 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:SlackApiRequest
Updates 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:
setToken
in 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)
-
-