python-telegram-bot/telegram/document.py

29 lines
880 B
Python

#!/usr/bin/env python
class Document(object):
def __init__(self, **kwargs):
param_defaults = {
'file_id': None,
'thumb': None,
'file_name': None,
'mime_type': None,
'file_size': None
}
for (param, default) in param_defaults.iteritems():
setattr(self, param, kwargs.get(param, default))
@staticmethod
def de_json(data):
if 'thumb' in data:
from telegram import PhotoSize
thumb = PhotoSize.de_json(data['thumb'])
else:
thumb = None
return Document(file_id=data.get('file_id', None),
thumb=thumb,
file_name=data.get('file_name', None),
mime_type=data.get('mime_type', None),
file_size=data.get('file_size', None))