mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-25 08:37:07 +01:00
21 lines
509 B
Python
21 lines
509 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
class GroupChat(object):
|
|
def __init__(self, **kwargs):
|
|
param_defaults = {
|
|
'id': None,
|
|
'title': None
|
|
}
|
|
|
|
for (param, default) in param_defaults.iteritems():
|
|
setattr(self, param, kwargs.get(param, default))
|
|
|
|
@property
|
|
def chat_id(self):
|
|
return self.id
|
|
|
|
@staticmethod
|
|
def newFromJsonDict(data):
|
|
return GroupChat(id=data.get('id', None),
|
|
title=data.get('title', None))
|