Class AdminEmojiAddAliasRequest
- java.lang.Object
-
- com.slack.api.methods.request.admin.emoji.AdminEmojiAddAliasRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class AdminEmojiAddAliasRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/admin.emoji.adddAlias
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAdminEmojiAddAliasRequest.AdminEmojiAddAliasRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdminEmojiAddAliasRequest.AdminEmojiAddAliasRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetAliasFor()The alias of the emoji.StringgetName()The name of the emoji to be aliased.StringgetToken()Authentication token bearing required scopes.inthashCode()voidsetAliasFor(String aliasFor)The alias of the emoji.voidsetName(String name)The name of the emoji to be aliased.voidsetToken(String token)Authentication token bearing required scopes.StringtoString()
-
-
-
Method Detail
-
builder
public static AdminEmojiAddAliasRequest.AdminEmojiAddAliasRequestBuilder builder()
-
getToken
public String getToken()
Authentication token bearing required scopes.- Specified by:
getTokenin interfaceSlackApiRequest
-
getAliasFor
public String getAliasFor()
The alias of the emoji.
-
getName
public String getName()
The name of the emoji to be aliased. Colons (:myemoji:) around the value are not required, although they may be included.
-
setToken
public void setToken(String token)
Authentication token bearing required scopes.
-
setAliasFor
public void setAliasFor(String aliasFor)
The alias of the emoji.
-
setName
public void setName(String name)
The name of the emoji to be aliased. Colons (:myemoji:) around the value are not required, although they may be included.
-
canEqual
protected boolean canEqual(Object other)
-
-