com.slack.api.methods.request.groups.GroupsRepliesRequest Maven / Gradle / Ivy
package com.slack.api.methods.request.groups;
import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;
@Deprecated // https://api.slack.com/changelog/2020-01-deprecating-antecedents-to-the-conversations-api
@Data
@Builder
public class GroupsRepliesRequest implements SlackApiRequest {
/**
* Authentication token. Requires scope: `groups:history`
*/
private String token;
/**
* Private channel to fetch thread from
*/
private String channel;
/**
* Unique identifier of a thread's parent message
*/
private String threadTs;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy