Appends text to an existing streaming conversation. https://docs.slack.dev/reference/methods/chat.appendStream
(
self,
*,
channel: str,
ts: str,
markdown_text: Optional[str] = None,
chunks: Optional[Sequence[Union[Dict, Chunk]]] = None,
**kwargs,
)
| 2643 | # -------------------------- |
| 2644 | |
| 2645 | def chat_appendStream( |
| 2646 | self, |
| 2647 | *, |
| 2648 | channel: str, |
| 2649 | ts: str, |
| 2650 | markdown_text: Optional[str] = None, |
| 2651 | chunks: Optional[Sequence[Union[Dict, Chunk]]] = None, |
| 2652 | **kwargs, |
| 2653 | ) -> SlackResponse: |
| 2654 | """Appends text to an existing streaming conversation. |
| 2655 | https://docs.slack.dev/reference/methods/chat.appendStream |
| 2656 | """ |
| 2657 | kwargs.update( |
| 2658 | { |
| 2659 | "channel": channel, |
| 2660 | "ts": ts, |
| 2661 | "markdown_text": markdown_text, |
| 2662 | "chunks": chunks, |
| 2663 | } |
| 2664 | ) |
| 2665 | _parse_web_class_objects(kwargs) |
| 2666 | kwargs = _remove_none_values(kwargs) |
| 2667 | return self.api_call("chat.appendStream", json=kwargs) |
| 2668 | |
| 2669 | def chat_delete( |
| 2670 | self, |
no test coverage detected