2016-04-12 06:12:35 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2022-01-03 08:15:18 +01:00
|
|
|
# Copyright (C) 2015-2022
|
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/].
|
2017-09-01 08:43:08 +02:00
|
|
|
"""This module contains the classes that represent Telegram InlineQueryResultCachedSticker."""
|
2016-04-14 01:01:36 +02:00
|
|
|
|
2020-10-31 16:33:34 +01:00
|
|
|
from typing import TYPE_CHECKING, Any
|
|
|
|
|
2022-01-19 18:00:21 +01:00
|
|
|
from telegram import InlineQueryResult, InlineKeyboardMarkup
|
2021-10-19 18:28:19 +02:00
|
|
|
from telegram.constants import InlineQueryResultType
|
2020-10-09 17:22:07 +02:00
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
if TYPE_CHECKING:
|
2022-01-19 18:00:21 +01:00
|
|
|
from telegram import InputMessageContent
|
2016-04-13 14:59:48 +02:00
|
|
|
|
|
|
|
|
|
|
|
class InlineQueryResultCachedSticker(InlineQueryResult):
|
2017-07-23 22:33:08 +02:00
|
|
|
"""
|
|
|
|
Represents a link to a sticker stored on the Telegram servers. By default, this sticker will
|
|
|
|
be sent by the user. Alternatively, you can use :attr:`input_message_content` to send a
|
|
|
|
message with the specified content instead of the sticker.
|
2016-10-17 22:44:40 +02:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Args:
|
2017-07-23 22:33:08 +02:00
|
|
|
id (:obj:`str`): Unique identifier for this result, 1-64 bytes.
|
|
|
|
sticker_file_id (:obj:`str`): A valid file identifier of the sticker.
|
2020-12-30 15:59:50 +01:00
|
|
|
reply_markup (:class:`telegram.InlineKeyboardMarkup`, optional): Inline keyboard attached
|
2016-10-17 22:44:40 +02:00
|
|
|
to the message.
|
2020-12-30 15:59:50 +01:00
|
|
|
input_message_content (:class:`telegram.InputMessageContent`, optional): Content of the
|
2016-10-17 22:44:40 +02:00
|
|
|
message to be sent instead of the sticker.
|
2020-12-30 15:59:50 +01:00
|
|
|
**kwargs (:obj:`dict`): Arbitrary keyword arguments.
|
2016-10-17 22:44:40 +02:00
|
|
|
|
2020-12-30 15:59:50 +01:00
|
|
|
Attributes:
|
2021-10-19 18:28:19 +02:00
|
|
|
type (:obj:`str`): :tg-const:`telegram.constants.InlineQueryResultType.STICKER`.
|
2020-04-07 17:25:17 +02:00
|
|
|
id (:obj:`str`): Unique identifier for this result, 1-64 bytes.
|
|
|
|
sticker_file_id (:obj:`str`): A valid file identifier of the sticker.
|
2020-12-30 15:59:50 +01:00
|
|
|
reply_markup (:class:`telegram.InlineKeyboardMarkup`): Optional. Inline keyboard attached
|
2017-07-23 22:33:08 +02:00
|
|
|
to the message.
|
2020-12-30 15:59:50 +01:00
|
|
|
input_message_content (:class:`telegram.InputMessageContent`): Optional. Content of the
|
2017-07-23 22:33:08 +02:00
|
|
|
message to be sent instead of the sticker.
|
2017-09-01 08:43:08 +02:00
|
|
|
|
2016-10-17 22:44:40 +02:00
|
|
|
"""
|
2016-05-15 03:46:40 +02:00
|
|
|
|
2021-05-29 16:18:16 +02:00
|
|
|
__slots__ = ('reply_markup', 'input_message_content', 'sticker_file_id')
|
|
|
|
|
2020-10-09 17:22:07 +02:00
|
|
|
def __init__(
|
|
|
|
self,
|
2021-10-08 08:17:00 +02:00
|
|
|
id: str, # pylint: disable=redefined-builtin
|
2020-10-09 17:22:07 +02:00
|
|
|
sticker_file_id: str,
|
2022-01-19 18:00:21 +01:00
|
|
|
reply_markup: InlineKeyboardMarkup = None,
|
2020-10-09 17:22:07 +02:00
|
|
|
input_message_content: 'InputMessageContent' = None,
|
2020-11-05 18:12:01 +01:00
|
|
|
**_kwargs: Any,
|
2020-10-09 17:22:07 +02:00
|
|
|
):
|
2016-04-16 17:20:15 +02:00
|
|
|
# Required
|
2021-10-19 18:28:19 +02:00
|
|
|
super().__init__(InlineQueryResultType.STICKER, id)
|
2016-04-16 17:20:15 +02:00
|
|
|
self.sticker_file_id = sticker_file_id
|
|
|
|
|
|
|
|
# Optionals
|
2019-11-23 17:05:03 +01:00
|
|
|
self.reply_markup = reply_markup
|
|
|
|
self.input_message_content = input_message_content
|