
    ynh
                     B    d Z ddlmZ ddlmZ ddlmZ  G d de      Zy)zEThis module contains an object that represents a Telegram StarAmount.    )Optional)TelegramObject)JSONDictc            	       J     e Zd ZdZdZ	 d	dddedee   dee   f fdZ xZ	S )

StarAmounta  Describes an amount of Telegram Stars.

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

    Args:
        amount (:obj:`int`): Integer amount of Telegram Stars, rounded to ``0``; can be negative.
        nanostar_amount (:obj:`int`, optional): The number of
            :tg-const:`telegram.constants.Nanostar.VALUE` shares of Telegram
            Stars; from :tg-const:`telegram.constants.NanostarLimit.MIN_AMOUNT`
            to :tg-const:`telegram.constants.NanostarLimit.MAX_AMOUNT`; can be
            negative if and only if :attr:`amount` is non-positive.

    Attributes:
        amount (:obj:`int`): Integer amount of Telegram Stars, rounded to ``0``; can be negative.
        nanostar_amount (:obj:`int`): Optional. The number of
            :tg-const:`telegram.constants.Nanostar.VALUE` shares of Telegram
            Stars; from :tg-const:`telegram.constants.NanostarLimit.MIN_AMOUNT`
            to :tg-const:`telegram.constants.NanostarLimit.MAX_AMOUNT`; can be
            negative if and only if :attr:`amount` is non-positive.

    )amountnanostar_amountN
api_kwargsr   r	   r   c                    t         |   |       || _        || _        | j                  | j                  f| _        | j                          y )Nr
   )super__init__r   r	   	_id_attrs_freeze)selfr   r	   r   	__class__s       c/var/www/html/profi_bot/bot/venv/lib/python3.12/site-packages/telegram/_payment/stars/staramount.pyr   zStarAmount.__init__7   sC     	J/!.=++t';';<    )N)
__name__
__module____qualname____doc__	__slots__intr   r   r   __classcell__)r   s   @r   r   r      sM    . .I
 *.
 *. "#
 X& r   r   N)r   typingr   telegram._telegramobjectr   telegram._utils.typesr   r    r   r   <module>r       s"   ( L  3 *' 'r   