
    di                     V    d Z ddlmZ ddlmZ ddlmZ ddlmZ  G d de          Z	dS )	zBThis module contains an object that represents a Telegram Invoice.    )Final)	constants)TelegramObject)JSONDictc                       e Zd ZU dZdZdddedededed	ed
edz  f fdZe	j
        j        Zee         ed<   	 e	j
        j        Zee         ed<   	 e	j
        j        Zee         ed<   	 e	j
        j        Zee         ed<   	 e	j
        j        Zee         ed<   	 e	j
        j        Zee         ed<   	 e	j
        j        Zee         ed<    xZS )Invoicea  This object contains basic information about an invoice.

    Objects of this class are comparable in terms of equality. Two objects of this class are
    considered equal, if their :attr:`title`, :attr:`description`, :paramref:`start_parameter`,
    :attr:`currency` and :attr:`total_amount` are equal.

    Args:
        title (:obj:`str`): Product name.
        description (:obj:`str`): Product description.
        start_parameter (:obj:`str`): Unique bot deep-linking parameter that can be used to
            generate this invoice.
        currency (:obj:`str`): Three-letter ISO 4217 currency code, or ``XTR`` for payments in
            |tg_stars|.
        total_amount (:obj:`int`): Total price in the smallest units of the currency (integer,
            **not** float/double). For example, for a price of ``US$ 1.45`` pass ``amount = 145``.
            See the ``exp`` parameter in
            `currencies.json <https://core.telegram.org/bots/payments/currencies.json>`_,
            it shows the number of digits past the decimal point for each currency
            (2 for the majority of currencies).

    Attributes:
        title (:obj:`str`): Product name.
        description (:obj:`str`): Product description.
        start_parameter (:obj:`str`): Unique bot deep-linking parameter that can be used to
            generate this invoice.
        currency (:obj:`str`): Three-letter ISO 4217 currency code, or ``XTR`` for payments in
            |tg_stars|.
        total_amount (:obj:`int`): Total price in the smallest units of the currency (integer,
            **not** float/double). For example, for a price of ``US$ 1.45`` pass ``amount = 145``.
            See the ``exp`` parameter in
            `currencies.json <https://core.telegram.org/bots/payments/currencies.json>`_,
            it shows the number of digits past the decimal point for each currency
            (2 for the majority of currencies).

    )currencydescriptionstart_parametertitletotal_amountN
api_kwargsr   r
   r   r	   r   r   c                   t                                          |           || _        || _        || _        || _        || _        | j        | j        | j        | j        | j        f| _        |                                  d S )Nr   )	super__init__r   r
   r   r	   r   	_id_attrs_freeze)selfr   r
   r   r	   r   r   	__class__s          V/root/projects/qq-shell/venv/lib/python3.11/site-packages/telegram/_payment/invoice.pyr   zInvoice.__init__I   s     	J///
 +$3%!- J M
 	    MIN_TITLE_LENGTHMAX_TITLE_LENGTHMIN_DESCRIPTION_LENGTHMAX_DESCRIPTION_LENGTHMIN_PAYLOAD_LENGTHMAX_PAYLOAD_LENGTHMAX_TIP_AMOUNTS)__name__
__module____qualname____doc__	__slots__strintr   r   r   InvoiceLimitr   r   __annotations__r   r   r   r   r   r   __classcell__)r   s   @r   r   r      s        " "HI  '+    	
   tO     6 $-#9#JeCjJJJ $-#9#JeCjJJJ *3)?)VE#JVVV *3)?)VE#JVVV &/%;%Nc
NNN &/%;%Nc
NNN #,"8"HOU3ZHHH   r   r   N)
r#   typingr   telegramr   telegram._telegramobjectr   telegram._utils.typesr   r    r   r   <module>r/      s   & I H             3 3 3 3 3 3 * * * * * *j j j j jn j j j j jr   