Source code for hydrogram.types.bots_and_keyboards.force_reply
# Hydrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-2023 Dan <https://github.com/delivrance>
# Copyright (C) 2023-present Hydrogram <https://hydrogram.org>
#
# This file is part of Hydrogram.
#
# Hydrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Hydrogram 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 General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Hydrogram. If not, see <http://www.gnu.org/licenses/>.
from __future__ import annotations
import hydrogram
from hydrogram import raw
from hydrogram.types.object import Object
[docs]
class ForceReply(Object):
"""Object used to force clients to show a reply interface.
Upon receiving a message with this object, Telegram clients will display a reply interface to the user.
This acts as if the user has selected the bot's message and tapped "Reply".
This can be extremely useful if you want to create user-friendly step-by-step interfaces without having to
sacrifice privacy mode.
Parameters:
selective (``bool``, *optional*):
Use this parameter if you want to force reply from specific users only. Targets:
1) users that are @mentioned in the text of the Message object;
2) if the bot's message is a reply (has reply_to_message_id), sender of the original message.
placeholder (``str``, *optional*):
The placeholder to be shown in the input field when the reply is active; 1-64 characters.
"""
def __init__(self, selective: bool | None = None, placeholder: str | None = None):
super().__init__()
self.selective = selective
self.placeholder = placeholder
@staticmethod
def read(b):
return ForceReply(selective=b.selective, placeholder=b.placeholder)
async def write(self, _: hydrogram.Client):
return raw.types.ReplyKeyboardForceReply(
single_use=True,
selective=self.selective or None,
placeholder=self.placeholder or None,
)