chat this message was posted in. :returns: :class:`deltachat.chat.Chat` object
(self)
| 261 | |
| 262 | @property |
| 263 | def chat(self): |
| 264 | """chat this message was posted in. |
| 265 | |
| 266 | :returns: :class:`deltachat.chat.Chat` object |
| 267 | """ |
| 268 | from .chat import Chat |
| 269 | |
| 270 | chat_id = lib.dc_msg_get_chat_id(self._dc_msg) |
| 271 | return Chat(self.account, chat_id) |
| 272 | |
| 273 | @props.with_doc |
| 274 | def override_sender_name(self) -> Optional[str]: |