mirror of
https://github.com/TeamPGM/pyrogram.git
synced 2024-11-16 04:35:24 +00:00
Add support for pay button
This commit is contained in:
parent
981ec3fc99
commit
7377290383
@ -72,6 +72,10 @@ class InlineKeyboardButton(Object):
|
|||||||
|
|
||||||
callback_data_with_password (``bytes``, *optional*):
|
callback_data_with_password (``bytes``, *optional*):
|
||||||
A button that asks for the 2-step verification password of the current user and then sends a callback query to a bot Data to be sent to the bot via a callback query.
|
A button that asks for the 2-step verification password of the current user and then sends a callback query to a bot Data to be sent to the bot via a callback query.
|
||||||
|
|
||||||
|
pay (``bool``, *optional*):
|
||||||
|
Change text of pay button.
|
||||||
|
Available in :meth:`~pyrogram.Client.send_invoice`.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
@ -85,7 +89,8 @@ class InlineKeyboardButton(Object):
|
|||||||
switch_inline_query: Optional[str] = None,
|
switch_inline_query: Optional[str] = None,
|
||||||
switch_inline_query_current_chat: Optional[str] = None,
|
switch_inline_query_current_chat: Optional[str] = None,
|
||||||
callback_game: Optional["types.CallbackGame"] = None,
|
callback_game: Optional["types.CallbackGame"] = None,
|
||||||
requires_password: Optional[bool] = None
|
requires_password: Optional[bool] = None,
|
||||||
|
pay: bool = None
|
||||||
):
|
):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
@ -99,7 +104,7 @@ class InlineKeyboardButton(Object):
|
|||||||
self.switch_inline_query_current_chat = switch_inline_query_current_chat
|
self.switch_inline_query_current_chat = switch_inline_query_current_chat
|
||||||
self.callback_game = callback_game
|
self.callback_game = callback_game
|
||||||
self.requires_password = requires_password
|
self.requires_password = requires_password
|
||||||
# self.pay = pay
|
self.pay = pay
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def read(b: "raw.base.KeyboardButton"):
|
def read(b: "raw.base.KeyboardButton"):
|
||||||
@ -163,7 +168,8 @@ class InlineKeyboardButton(Object):
|
|||||||
|
|
||||||
if isinstance(b, raw.types.KeyboardButtonBuy):
|
if isinstance(b, raw.types.KeyboardButtonBuy):
|
||||||
return InlineKeyboardButton(
|
return InlineKeyboardButton(
|
||||||
text=b.text
|
text=b.text,
|
||||||
|
pay=True
|
||||||
)
|
)
|
||||||
|
|
||||||
async def write(self, client: "pyrogram.Client"):
|
async def write(self, client: "pyrogram.Client"):
|
||||||
@ -218,3 +224,6 @@ class InlineKeyboardButton(Object):
|
|||||||
text=self.text,
|
text=self.text,
|
||||||
url=self.web_app.url
|
url=self.web_app.url
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if self.pay is not None:
|
||||||
|
return raw.types.KeyboardButtonBuy(text=self.text)
|
||||||
|
Loading…
Reference in New Issue
Block a user