Set data for a user in a particular chat.
(self, chat_id, user_id, key, value,
business_connection_id=None,
message_thread_id=None,
bot_id=None,
)
| 6 | pass |
| 7 | |
| 8 | def set_data(self, chat_id, user_id, key, value, |
| 9 | business_connection_id=None, |
| 10 | message_thread_id=None, |
| 11 | bot_id=None, |
| 12 | ): |
| 13 | """ |
| 14 | Set data for a user in a particular chat. |
| 15 | """ |
| 16 | raise NotImplementedError |
| 17 | |
| 18 | def get_data(self, chat_id, user_id): |
| 19 | """ |