Class ConversationsSetTopicRequest
- java.lang.Object
-
- com.slack.api.methods.request.conversations.ConversationsSetTopicRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class ConversationsSetTopicRequest extends Object implements SlackApiRequest
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classConversationsSetTopicRequest.ConversationsSetTopicRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ConversationsSetTopicRequest.ConversationsSetTopicRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetChannel()Conversation to set the topic ofStringgetToken()Authentication token.StringgetTopic()The new topic string.inthashCode()voidsetChannel(String channel)Conversation to set the topic ofvoidsetToken(String token)Authentication token.voidsetTopic(String topic)The new topic string.StringtoString()
-
-
-
Method Detail
-
builder
public static ConversationsSetTopicRequest.ConversationsSetTopicRequestBuilder builder()
-
getToken
public String getToken()
Authentication token. Requires scope: `conversations:write`- Specified by:
getTokenin interfaceSlackApiRequest
-
getChannel
public String getChannel()
Conversation to set the topic of
-
getTopic
public String getTopic()
The new topic string. Does not support formatting or linkification.
-
setToken
public void setToken(String token)
Authentication token. Requires scope: `conversations:write`
-
setChannel
public void setChannel(String channel)
Conversation to set the topic of
-
setTopic
public void setTopic(String topic)
The new topic string. Does not support formatting or linkification.
-
canEqual
protected boolean canEqual(Object other)
-
-