
    /j-                     6    d Z ddlmZ ddlmZ  G d de      Zy)zMThis module contains an object that represents a Telegram Sent Guest Message.    )TelegramObject)JSONDictc                   <     e Zd ZdZdZdddededz  f fdZ xZS )SentGuestMessagea  Describes an inline message sent by a guest bot.

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

    .. versionadded:: 22.8

    Args:
        inline_message_id (:obj:`str`): Identifier of the sent inline message.

    Attributes:
        inline_message_id (:obj:`str`): Identifier of the sent inline message.
    )inline_message_idN
api_kwargsr   r	   c                x    t         |   |       || _        | j                  f| _        | j	                          y )Nr   )super__init__r   	_id_attrs_freeze)selfr   r	   	__class__s      X/var/www/html/maxservice/venv/lib/python3.12/site-packages/telegram/_sentguestmessage.pyr   zSentGuestMessage.__init__*   s6     	J/&7002    )	__name__
__module____qualname____doc__	__slots__strr   r   __classcell__)r   s   @r   r   r      s4     'I '+	 tO	 r   r   N)r   telegram._telegramobjectr   telegram._utils.typesr   r    r   r   <module>r      s   & T 3 *~ r   