Class ChatGetPermalinkRequest
- java.lang.Object
-
- com.slack.api.methods.request.chat.ChatGetPermalinkRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class ChatGetPermalinkRequest extends Object implements SlackApiRequest
A request to retrieve a permalink URL for a specific extant message- See Also:
- Slack chat.getPermalink API
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classChatGetPermalinkRequest.ChatGetPermalinkRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChatGetPermalinkRequest.ChatGetPermalinkRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetChannel()The ID of the conversation or channel containing the messageStringgetMessageTs()A message's `ts` value, uniquely identifying it within a channelStringgetToken()Authentication token.inthashCode()voidsetChannel(String channel)The ID of the conversation or channel containing the messagevoidsetMessageTs(String messageTs)A message's `ts` value, uniquely identifying it within a channelvoidsetToken(String token)Authentication token.StringtoString()
-
-
-
Method Detail
-
builder
public static ChatGetPermalinkRequest.ChatGetPermalinkRequestBuilder builder()
-
getToken
public String getToken()
Authentication token. Requires scope: `none`- Specified by:
getTokenin interfaceSlackApiRequest
-
getChannel
public String getChannel()
The ID of the conversation or channel containing the message
-
getMessageTs
public String getMessageTs()
A message's `ts` value, uniquely identifying it within a channel
-
setToken
public void setToken(String token)
Authentication token. Requires scope: `none`
-
setChannel
public void setChannel(String channel)
The ID of the conversation or channel containing the message
-
setMessageTs
public void setMessageTs(String messageTs)
A message's `ts` value, uniquely identifying it within a channel
-
canEqual
protected boolean canEqual(Object other)
-
-