mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-03-13 19:27:58 +01:00
23 lines
No EOL
503 B
Python
23 lines
No EOL
503 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
import json
|
|
from .telegram_boject_base import Base
|
|
|
|
|
|
class GroupChat(Base):
|
|
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))
|
|
|
|
def to_json(self):
|
|
json_data = {'id': self.id,
|
|
'title': self.title}
|
|
return json.dumps(json_data) |