python-telegram-bot/telegram/groupchat.py

26 lines
521 B
Python
Raw Normal View History

2015-07-07 21:50:36 +02:00
#!/usr/bin/env python
2015-07-09 16:40:44 +02:00
import json
2015-07-07 21:50:36 +02:00
class GroupChat(object):
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_json(self):
json_data = {'id': self.id,
'title': self.title}
return json.dumps(json_data)
def __str__(self):
return self.to_json()