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

com.slack.api.methods.request.reactions.ReactionsListRequest Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
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.list
 */
@Data
@Builder
public class ReactionsListRequest implements SlackApiRequest {

    /**
     * Authentication token. Requires scope: `reactions:read`
     */
    private String token;

    /**
     * Show reactions made by this user. Defaults to the authed user.
     */
    private String user;

    /**
     * If true always return the complete reaction list.
     */
    private boolean full;

    private Integer count;

    private Integer page;

    private Integer limit;

    private String cursor;

    /**
     * Required for org-wide apps.
     */
    private String teamId;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy