o
    "hw
                     @   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 )zEThis module contains an object that represents a Telegram StarAmount.    )Optional)TelegramObject)JSONDictc                	       sD   e Zd ZdZdZ	d
dddedee dee f fdd	Z  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                   s4   t  j|d || _|| _| j| jf| _|   d S )Nr   )super__init__r   r   	_id_attrs_freeze)selfr   r   r	   	__class__ U/var/www/html/venv/lib/python3.10/site-packages/telegram/_payment/stars/staramount.pyr   6   s
   zStarAmount.__init__)N)
__name__
__module____qualname____doc__	__slots__intr   r   r   __classcell__r   r   r   r   r      s    r   N)r   typingr   telegram._telegramobjectr   telegram._utils.typesr   r   r   r   r   r   <module>   s
   