python-telegram-bot/telegram/groupchat.py

23 lines
472 B
Python
Raw Normal View History

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