mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
65 lines
2.4 KiB
Python
65 lines
2.4 KiB
Python
# Pyrogram - Telegram MTProto API Client Library for Python
|
|
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
|
# Copyright (C) 2022-present Mayuri-Chan <https://github.com/Mayuri-Chan>
|
|
#
|
|
# This file is part of Pyrogram.
|
|
#
|
|
# Pyrogram 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.
|
|
#
|
|
# Pyrogram 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 Pyrogram. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import pyrogram
|
|
from pyrogram import raw
|
|
|
|
|
|
class AnswerPreCheckoutQuery:
|
|
async def answer_pre_checkout_query(
|
|
self: "pyrogram.Client",
|
|
pre_checkout_query_id: str,
|
|
success: bool = None,
|
|
error: str = None
|
|
):
|
|
"""Send answers to pre-checkout queries.
|
|
|
|
.. include:: /_includes/usable-by/bots.rst
|
|
|
|
Parameters:
|
|
pre_checkout_query_id (``str``):
|
|
Unique identifier for the query to be answered.
|
|
|
|
success (``bool``, *optional*):
|
|
Set this flag if everything is alright (goods are available, etc.) and the bot is ready to proceed with the order.
|
|
Otherwise do not set it, and set the error field, instead.
|
|
|
|
error (``str``, *optional*):
|
|
Error message in human readable form that explains the reason for failure to proceed with the checkout.
|
|
Required if ``success`` isn't set.
|
|
|
|
Returns:
|
|
``bool``: True, on success.
|
|
|
|
Example:
|
|
.. code-block:: python
|
|
|
|
# Proceed with the order
|
|
await app.answer_pre_checkout_query(query_id, success=True)
|
|
|
|
# Answer with error message
|
|
await app.answer_pre_checkout_query(query_id, error=error)
|
|
"""
|
|
return await self.invoke(
|
|
raw.functions.messages.SetBotPrecheckoutResults(
|
|
query_id=int(pre_checkout_query_id),
|
|
success=success or None,
|
|
error=error or None
|
|
)
|
|
)
|