o
    FÆhÍ  ã                   @  sP   d dl mZ d dlmZmZmZ ddlmZ ddlm	Z	 G dd„ de	e
 ƒZd	S )
é    )Úannotations)ÚTYPE_CHECKINGÚAnyÚOptionalé   )ÚChatIdUnioné   )ÚTelegramMethodc                      sp   e Zd ZU dZeZdZded< 	 ded< 	 dZded	< 	 dZ	d
ed< 	 e
r4dddœd‡ fdd„Z‡  ZS ‡  ZS )ÚSendChatActionu(  
    Use this method when you need to tell the user that something is happening on the bot's side. The status is set for 5 seconds or less (when a message arrives from your bot, Telegram clients clear its typing status). Returns :code:`True` on success.

     Example: The `ImageBot <https://t.me/imagebot>`_ needs some time to process a request and upload the image. Instead of sending a text message along the lines of 'Retrieving image, please waitâ€¦', the bot may use :class:`aiogram.methods.send_chat_action.SendChatAction` with *action* = *upload_photo*. The user will see a 'sending photo' status for the bot.

    We only recommend using this method when a response from the bot will take a **noticeable** amount of time to arrive.

    Source: https://core.telegram.org/bots/api#sendchataction
    ÚsendChatActionr   Úchat_idÚstrÚactionNúOptional[str]Úbusiness_connection_idúOptional[int]Úmessage_thread_id)r   r   Ú _SendChatAction__pydantic_kwargsr   ÚreturnÚNonec                  s    t ƒ jd||||dœ|¤Ž d S )N)r   r   r   r   © )ÚsuperÚ__init__)Ú__pydantic__self__r   r   r   r   r   ©Ú	__class__r   úS/var/www/html/venv/lib/python3.10/site-packages/aiogram/methods/send_chat_action.pyr   $   s   ü
ûzSendChatAction.__init__)r   r   r   r   r   r   r   r   r   r   r   r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__ÚboolÚ__returning__Ú__api_method__Ú__annotations__r   r   r   r   Ú__classcell__r   r   r   r   r
   	   s"   
 
	úür
   N)Ú
__future__r   Útypingr   r   r   Útypesr   Úbaser	   r!   r
   r   r   r   r   Ú<module>   s
    