docs/reference/context/set_status/index.html
slack_bolt.context.set_status.async_set_status
slack_bolt.context.set_status.set_status
class SetStatus (client: slack_sdk.web.client.WebClient, channel_id: str, thread_ts: str)#Expand source code
class SetStatus:
client: WebClient
channel_id: str
thread_ts: str
def __init__ (
self,
client: WebClient,
channel_id: str,
thread_ts: str,
):
self.client = client
self.channel_id = channel_id
self.thread_ts = thread_ts
def __call__ (
self,
status: str,
loading_messages: Optional[List[str]] = None,
**kwargs,
) -> SlackResponse:
return self.client.assistant_threads_setStatus(
channel_id=self.channel_id,
thread_ts=self.thread_ts,
status=status,
loading_messages=loading_messages,
**kwargs,
)
var channel_id : str
The type of the None singleton.
var client : slack_sdk.web.client.WebClient
The type of the None singleton.
var thread_ts : str
The type of the None singleton.