mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 04:35:24 +00:00
Add the class SentWebAppMessage
This commit is contained in:
parent
91e4716872
commit
747b25b9eb
@ -426,6 +426,7 @@ def pyrogram_api():
|
||||
MenuButtonCommands
|
||||
MenuButtonWebApp
|
||||
MenuButtonDefault
|
||||
SentWebAppMessage
|
||||
""",
|
||||
bot_commands="""
|
||||
Bot commands
|
||||
|
42
pyrogram/types/bots_and_keyboards/sent_web_app_message.py
Normal file
42
pyrogram/types/bots_and_keyboards/sent_web_app_message.py
Normal file
@ -0,0 +1,42 @@
|
||||
# Pyrogram - Telegram MTProto API Client Library for Python
|
||||
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
|
||||
#
|
||||
# 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/>.
|
||||
|
||||
from pyrogram import raw, utils
|
||||
from ..object import Object
|
||||
|
||||
|
||||
class SentWebAppMessage(Object):
|
||||
"""Contains information about an inline message sent by a `Web App <https://core.telegram.org/bots/webapps>`_ on behalf of a user.
|
||||
|
||||
Parameters:
|
||||
inline_message_id (``str``):
|
||||
Identifier of the sent inline message.
|
||||
Available only if there is an inline keyboard attached to the message.
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self, *,
|
||||
inline_message_id: str,
|
||||
):
|
||||
super().__init__()
|
||||
|
||||
self.inline_message_id = inline_message_id
|
||||
|
||||
@staticmethod
|
||||
def _parse(obj: "raw.types.WebViewMessageSent"):
|
||||
return SentWebAppMessage(inline_message_id=utils.pack_inline_message_id(obj.msg_id))
|
Loading…
Reference in New Issue
Block a user