Module slack_bolt.context.assistant.thread_context_store.store
Classes
class AssistantThreadContextStore
-
Expand source code
class AssistantThreadContextStore: def save(self, *, channel_id: str, thread_ts: str, context: Dict[str, str]) -> None: raise NotImplementedError() def find(self, *, channel_id: str, thread_ts: str) -> Optional[AssistantThreadContext]: raise NotImplementedError()
Subclasses
Methods
def find(self, *, channel_id: str, thread_ts: str) ‑> Optional[AssistantThreadContext]
def save(self, *, channel_id: str, thread_ts: str, context: Dict[str, str]) ‑> None