
com.slack.api.methods.request.reactions.ReactionsRemoveRequest Maven / Gradle / Ivy
package com.slack.api.methods.request.reactions;
import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;
/**
* https://api.slack.com/methods/reactions.remove
*/
@Data
@Builder
public class ReactionsRemoveRequest implements SlackApiRequest {
/**
* Authentication token. Requires scope: `reactions:write`
*/
private String token;
/**
* Reaction (emoji) name.
*/
private String name;
/**
* File to remove reaction from.
*/
private String file;
/**
* File comment to remove reaction from.
*/
private String fileComment;
/**
* Channel where the message to remove reaction from was posted.
*/
private String channel;
/**
* Timestamp of the message to remove reaction from.
*/
private String timestamp;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy