Sets the read cursor in a channel.
(
self,
*,
channel: str,
ts: str,
**kwargs,
)
| 2571 | return self.api_call("channels.list", http_verb="GET", params=kwargs) |
| 2572 | |
| 2573 | def channels_mark( |
| 2574 | self, |
| 2575 | *, |
| 2576 | channel: str, |
| 2577 | ts: str, |
| 2578 | **kwargs, |
| 2579 | ) -> SlackResponse: |
| 2580 | """Sets the read cursor in a channel.""" |
| 2581 | kwargs.update({"channel": channel, "ts": ts}) |
| 2582 | kwargs = _remove_none_values(kwargs) |
| 2583 | return self.api_call("channels.mark", json=kwargs) |
| 2584 | |
| 2585 | def channels_rename( |
| 2586 | self, |
nothing calls this directly
no test coverage detected