Class AdminTeamsCreateRequest
- java.lang.Object
-
- com.slack.api.methods.request.admin.teams.AdminTeamsCreateRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AdminTeamsCreateRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/admin.teams.create
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdminTeamsCreateRequest.AdminTeamsCreateRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminTeamsCreateRequest.AdminTeamsCreateRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetTeamDescription()Description for the team.StringgetTeamDiscoverability()Who can join the team.StringgetTeamDomain()Team domain (for example, slacksoftballteam).StringgetTeamName()Team name (for example, Slack Softball Team).StringgetToken()Authentication token bearing required scopes.inthashCode()voidsetTeamDescription(String teamDescription)Description for the team.voidsetTeamDiscoverability(String teamDiscoverability)Who can join the team.voidsetTeamDomain(String teamDomain)Team domain (for example, slacksoftballteam).voidsetTeamName(String teamName)Team name (for example, Slack Softball Team).voidsetToken(String token)Authentication token bearing required scopes.StringtoString()
-
-
-
Method Detail
-
builder
public static AdminTeamsCreateRequest.AdminTeamsCreateRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest
-
getTeamDomain
public String getTeamDomain()
Team domain (for example, slacksoftballteam).
-
getTeamName
public String getTeamName()
Team name (for example, Slack Softball Team).
-
getTeamDescription
public String getTeamDescription()
Description for the team.
-
getTeamDiscoverability
public String getTeamDiscoverability()
Who can join the team. A team's discoverability can be open, closed, invite_only, or unlisted.
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.
-
setTeamDomain
public void setTeamDomain(String teamDomain)
Team domain (for example, slacksoftballteam).
-
setTeamName
public void setTeamName(String teamName)
Team name (for example, Slack Softball Team).
-
setTeamDescription
public void setTeamDescription(String teamDescription)
Description for the team.
-
setTeamDiscoverability
public void setTeamDiscoverability(String teamDiscoverability)
Who can join the team. A team's discoverability can be open, closed, invite_only, or unlisted.
-
canEqual
protected boolean canEqual(Object other)
-
-