U
    ç;ãgþ  ã                   @   s,   d dl mZ ddlmZ G dd„ deƒZdS )é    )ÚCallableé   )ÚHandlerc                       s(   e Zd ZdZdedœ‡ fdd„Z‡  ZS )ÚChatMemberUpdatedHandleraô  The ChatMemberUpdated handler class. Used to handle changes in the status of a chat member.
    It is intended to be used with :meth:`~pyrogram.Client.add_handler`.

    For a nicer way to register this handler, have a look at the
    :meth:`~pyrogram.Client.on_chat_member_updated` decorator.

    Parameters:
        callback (``Callable``):
            Pass a function that will be called when a new ChatMemberUpdated event arrives. It takes
            *(client, chat_member_updated)* as positional arguments (look at the section below for a detailed
            description).

        filters (:obj:`Filters`):
            Pass one or more filters to allow only a subset of updates to be passed in your callback function.

    Other parameters:
        client (:obj:`~pyrogram.Client`):
            The Client itself, useful when you want to call other API methods inside the handler.

        chat_member_updated (:obj:`~pyrogram.types.ChatMemberUpdated`):
            The received chat member update.
    N)Úcallbackc                    s   t ƒ  ||¡ d S )N)ÚsuperÚ__init__)Úselfr   Úfilters©Ú	__class__© úm/opt/bot/vods_filmes/script/venv/lib/python3.8/site-packages/pyrogram/handlers/chat_member_updated_handler.pyr   0   s    z!ChatMemberUpdatedHandler.__init__)N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   r   Ú__classcell__r   r   r   r   r      s   r   N)Útypingr   Úhandlerr   r   r   r   r   r   Ú<module>   s   