U
    ;g                     @   s2   d dl mZ d dlZd dlmZ G dd dZdS )    )UnionN)rawc                   @   s4   e Zd Zddeeef eeeef edddZdS )RequestCallbackAnswer
   zpyrogram.Client)selfchat_id
message_idcallback_datatimeoutc                    sJ   t |trt|dn|}| jtjjj| |I dH ||dd|dI dH S )a  Request a callback answer from bots.
        This is the equivalent of clicking an inline button containing callback data.

        .. include:: /_includes/usable-by/users.rst

        Parameters:
            chat_id (``int`` | ``str``):
                Unique identifier (int) or username (str) of the target chat.
                For your personal cloud (Saved Messages) you can simply use "me" or "self".
                For a contact that exists in your Telegram address book you can use his phone number (str).

            message_id (``int``):
                The message id the inline keyboard is attached on.

            callback_data (``str`` | ``bytes``):
                Callback data associated with the inline button you want to get the answer from.

            timeout (``int``, *optional*):
                Timeout in seconds.

        Returns:
            The answer containing info useful for clients to display a notification at the top of the chat screen
            or as an alert.

        Raises:
            TimeoutError: In case the bot fails to answer within 10 seconds.

        Example:
            .. code-block:: python

                await app.request_callback_answer(chat_id, message_id, "callback_data")
        zutf-8N)ZpeerZmsg_iddatar   )retriesr
   )	
isinstancestrbytesZinvoker   Z	functionsmessagesZGetBotCallbackAnswerZresolve_peer)r   r   r   r	   r
   r    r   m/opt/bot/vods_filmes/script/venv/lib/python3.8/site-packages/pyrogram/methods/bots/request_callback_answer.pyrequest_callback_answer   s    )z-RequestCallbackAnswer.request_callback_answerN)r   )__name__
__module____qualname__r   intr   r   r   r   r   r   r   r      s    

r   )typingr   Zpyrogramr   r   r   r   r   r   <module>   s   