mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
65 lines
2.1 KiB
Python
65 lines
2.1 KiB
Python
from __future__ import annotations
|
|
|
|
from typing import Union
|
|
|
|
from ..types import (
|
|
InlineQueryResultArticle,
|
|
InlineQueryResultAudio,
|
|
InlineQueryResultCachedAudio,
|
|
InlineQueryResultCachedDocument,
|
|
InlineQueryResultCachedGif,
|
|
InlineQueryResultCachedMpeg4Gif,
|
|
InlineQueryResultCachedPhoto,
|
|
InlineQueryResultCachedSticker,
|
|
InlineQueryResultCachedVideo,
|
|
InlineQueryResultCachedVoice,
|
|
InlineQueryResultContact,
|
|
InlineQueryResultDocument,
|
|
InlineQueryResultGame,
|
|
InlineQueryResultGif,
|
|
InlineQueryResultLocation,
|
|
InlineQueryResultMpeg4Gif,
|
|
InlineQueryResultPhoto,
|
|
InlineQueryResultVenue,
|
|
InlineQueryResultVideo,
|
|
InlineQueryResultVoice,
|
|
SentWebAppMessage,
|
|
)
|
|
from .base import TelegramMethod
|
|
|
|
|
|
class AnswerWebAppQuery(TelegramMethod[SentWebAppMessage]):
|
|
"""
|
|
Use this method to set the result of an interaction with a `Web App <https://core.telegram.org/bots/webapps>`_ and send a corresponding message on behalf of the user to the chat from which the query originated. On success, a :class:`aiogram.types.sent_web_app_message.SentWebAppMessage` object is returned.
|
|
|
|
Source: https://core.telegram.org/bots/api#answerwebappquery
|
|
"""
|
|
|
|
__returning__ = SentWebAppMessage
|
|
__api_method__ = "answerWebAppQuery"
|
|
|
|
web_app_query_id: str
|
|
"""Unique identifier for the query to be answered"""
|
|
result: Union[
|
|
InlineQueryResultCachedAudio,
|
|
InlineQueryResultCachedDocument,
|
|
InlineQueryResultCachedGif,
|
|
InlineQueryResultCachedMpeg4Gif,
|
|
InlineQueryResultCachedPhoto,
|
|
InlineQueryResultCachedSticker,
|
|
InlineQueryResultCachedVideo,
|
|
InlineQueryResultCachedVoice,
|
|
InlineQueryResultArticle,
|
|
InlineQueryResultAudio,
|
|
InlineQueryResultContact,
|
|
InlineQueryResultGame,
|
|
InlineQueryResultDocument,
|
|
InlineQueryResultGif,
|
|
InlineQueryResultLocation,
|
|
InlineQueryResultMpeg4Gif,
|
|
InlineQueryResultPhoto,
|
|
InlineQueryResultVenue,
|
|
InlineQueryResultVideo,
|
|
InlineQueryResultVoice,
|
|
]
|
|
"""A JSON-serialized object describing the message to be sent"""
|