python-telegram-bot/telegram/forcereply.py
2015-07-09 11:40:44 -03:00

27 lines
695 B
Python

#!/usr/bin/env python
import json
from replymarkup import ReplyMarkup
class ForceReply(ReplyMarkup):
def __init__(self,
force_reply=True,
selective=None):
self.force_reply = force_reply
self.selective = selective
@staticmethod
def de_json(data):
return ForceReply(force_reply=data.get('force_reply', None),
selective=data.get('selective', None))
def to_json(self):
json_data = {'force_reply': self.force_reply}
if self.selective:
json_data['selective'] = self.selective
return json.dumps(json_data)
def __str__(self):
return self.to_json()