python-telegram-bot/telegram/groupchat.py

23 lines
472 B
Python
Raw Normal View History

2015-07-07 21:50:36 +02:00
#!/usr/bin/env python
2015-07-20 12:53:58 +02:00
from telegram import TelegramObject
2015-07-09 16:40:44 +02:00
class GroupChat(TelegramObject):
2015-07-09 02:58:13 +02:00
def __init__(self,
id,
title):
self.id = id
self.title = title
2015-07-08 14:17:18 +02:00
2015-07-07 21:50:36 +02:00
@staticmethod
def de_json(data):
2015-07-07 21:50:36 +02:00
return GroupChat(id=data.get('id', None),
title=data.get('title', None))
2015-07-09 16:40:44 +02:00
def to_dict(self):
data = {'id': self.id,
'title': self.title}
return data