U
    g                     @   s<   d Z ddlmZ ddlmZ ddlmZ G dd deZdS )z_This module contains an object that represents a change in the Telegram message auto
deletion.
    )Optional)TelegramObject)JSONDictc                       s6   e Zd ZdZdZddeee d fddZ  Z	S )MessageAutoDeleteTimerChangeda  This object represents a service message about a change in auto-delete timer settings.

    Objects of this class are comparable in terms of equality. Two objects of this class are
    considered equal, if their :attr:`message_auto_delete_time` is equal.

    .. versionadded:: 13.4

    Args:
        message_auto_delete_time (:obj:`int`): New auto-delete time for messages in the
            chat.

    Attributes:
        message_auto_delete_time (:obj:`int`): New auto-delete time for messages in the
            chat.

    )message_auto_delete_timeN
api_kwargs)r   r   c                   s*   t  j|d || _| jf| _|   d S )Nr   )super__init__r   Z	_id_attrsZ_freeze)selfr   r   	__class__ K/tmp/pip-unpacked-wheel-swnnwir2/telegram/_messageautodeletetimerchanged.pyr
   1   s    
z&MessageAutoDeleteTimerChanged.__init__)
__name__
__module____qualname____doc__	__slots__intr   r   r
   __classcell__r   r   r   r   r      s   r   N)r   typingr   Ztelegram._telegramobjectr   Ztelegram._utils.typesr   r   r   r   r   r   <module>   s   