python-telegram-bot/telegram/groupchat.py
Leandro Toledo b2a4d4f5fc PEP8
2015-07-08 21:58:13 -03:00

14 lines
314 B
Python

#!/usr/bin/env python
class GroupChat(object):
def __init__(self,
id,
title):
self.id = id
self.title = title
@staticmethod
def de_json(data):
return GroupChat(id=data.get('id', None),
title=data.get('title', None))