2016-04-12 06:12:35 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2017-05-14 12:18:29 +02:00
|
|
|
# Copyright (C) 2015-2017
|
2016-04-12 06:12:35 +02:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2016-04-14 01:01:36 +02:00
|
|
|
"""This module contains the classes that represent Telegram
|
|
|
|
InputContactMessageContent"""
|
|
|
|
|
|
|
|
from telegram import InputMessageContent
|
|
|
|
|
|
|
|
|
|
|
|
class InputContactMessageContent(InputMessageContent):
|
2016-04-24 01:19:51 +02:00
|
|
|
"""Base class for Telegram InputContactMessageContent Objects"""
|
|
|
|
|
2016-05-24 01:43:17 +02:00
|
|
|
def __init__(self, phone_number, first_name, last_name=None, **kwargs):
|
2016-04-24 01:19:51 +02:00
|
|
|
# Required
|
|
|
|
self.phone_number = phone_number
|
|
|
|
self.first_name = first_name
|
|
|
|
# Optionals
|
|
|
|
self.last_name = last_name
|
|
|
|
|
|
|
|
@staticmethod
|
2016-09-20 06:36:55 +02:00
|
|
|
def de_json(data, bot):
|
2016-04-24 01:19:51 +02:00
|
|
|
return InputContactMessageContent(**data)
|