Class BookmarksRemoveRequest
- java.lang.Object
-
- com.slack.api.methods.request.bookmarks.BookmarksRemoveRequest
-
- All Implemented Interfaces:
SlackApiRequest
public class BookmarksRemoveRequest extends Object implements SlackApiRequest
https://api.slack.com/methods/bookmarks.remove
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classBookmarksRemoveRequest.BookmarksRemoveRequestBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BookmarksRemoveRequest.BookmarksRemoveRequestBuilderbuilder()protected booleancanEqual(Object other)booleanequals(Object o)StringgetBookmarkId()Bookmark to remove.StringgetChannelId()Channel to remove bookmark.StringgetToken()Authentication token.inthashCode()voidsetBookmarkId(String bookmarkId)Bookmark to remove.voidsetChannelId(String channelId)Channel to remove bookmark.voidsetToken(String token)Authentication token.StringtoString()
-
-
-
Method Detail
-
builder
public static BookmarksRemoveRequest.BookmarksRemoveRequestBuilder builder()
-
getToken
public String getToken()
Authentication token. Requires scope: `bookmarks:write`- Specified by:
getTokenin interfaceSlackApiRequest- Returns:
- token string value or null
-
getBookmarkId
public String getBookmarkId()
Bookmark to remove.
-
getChannelId
public String getChannelId()
Channel to remove bookmark.
-
setToken
public void setToken(String token)
Authentication token. Requires scope: `bookmarks:write`- Specified by:
setTokenin interfaceSlackApiRequest
-
setBookmarkId
public void setBookmarkId(String bookmarkId)
Bookmark to remove.
-
setChannelId
public void setChannelId(String channelId)
Channel to remove bookmark.
-
canEqual
protected boolean canEqual(Object other)
-
-