mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 15:17:00 +01:00
17 lines
448 B
Python
17 lines
448 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))
|
|
|
|
@staticmethod
|
|
def newFromJsonDict(data):
|
|
return GroupChat(id=data.get('id', None),
|
|
title=data.get('title', None))
|