All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.slack.api.methods.request.bookmarks.BookmarksEditRequest Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.methods.request.bookmarks;

import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;

/**
 * https://api.slack.com/methods/bookmarks.edit
 */
@Data
@Builder
public class BookmarksEditRequest implements SlackApiRequest {

    /**
     * Authentication token. Requires scope: `bookmarks:write`
     */
    private String token;

    /**
     * Bookmark to update.
     */
    private String bookmarkId;

    /**
     * Channel to update bookmark in.
     */
    private String channelId;

    /**
     * Link to bookmark.
     */
    private String link;

    /**
     * Emoji tag to apply to the link.
     */
    private String emoji;

    /**
     * Title for the bookmark.
     */
    private String title;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy