
com.slack.api.methods.request.assistant.threads.AssistantThreadsSetStatusRequest Maven / Gradle / Ivy
package com.slack.api.methods.request.assistant.threads;
import com.slack.api.methods.SlackApiRequest;
import lombok.Builder;
import lombok.Data;
/**
* https://api.slack.com/methods/assistant.threads.setStatus
*/
@Data
@Builder
public class AssistantThreadsSetStatusRequest implements SlackApiRequest {
private String token;
/**
* Channel ID containing the assistant thread.
*/
private String channelId;
/**
* Message timestamp of the thread of where to set the status.
*/
private String threadTs;
/**
* Status of the specified bot user, e.g. 'is thinking...'
*/
private String status;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy