
    di                     >    d Z ddlmZ ddlmZ  G d de          ZdS )zJThis module contains an object that represents a Telegram RefundedPayment.    )TelegramObject)JSONDictc                   V     e Zd ZdZdZ	 ddddedededed	edz  d
edz  f fdZ xZ	S )RefundedPaymentad  This object contains basic information about a refunded payment.

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

    .. versionadded:: 21.4

    Args:
        currency (:obj:`str`): Three-letter ISO 4217 `currency
            <https://core.telegram.org/bots/payments#supported-currencies>`_ code, or ``XTR`` for
            payments in |tg_stars|. Currently, always ``XTR``.
        total_amount (:obj:`int`): Total refunded price in the *smallest units* of the currency
            (integer, **not** float/double). For example, for a price of ``US$ 1.45``,
            ``total_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).
        invoice_payload (:obj:`str`): Bot-specified invoice payload.
        telegram_payment_charge_id (:obj:`str`): Telegram payment identifier.
        provider_payment_charge_id (:obj:`str`, optional): Provider payment identifier.

    Attributes:
        currency (:obj:`str`): Three-letter ISO 4217 `currency
            <https://core.telegram.org/bots/payments#supported-currencies>`_ code, or ``XTR`` for
            payments in |tg_stars|. Currently, always ``XTR``.
        total_amount (:obj:`int`): Total refunded price in the *smallest units* of the currency
            (integer, **not** float/double). For example, for a price of ``US$ 1.45``,
            ``total_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).
        invoice_payload (:obj:`str`): Bot-specified invoice payload.
        telegram_payment_charge_id (:obj:`str`): Telegram payment identifier.
        provider_payment_charge_id (:obj:`str`): Optional. Provider payment identifier.

    )currencyinvoice_payloadprovider_payment_charge_idtelegram_payment_charge_idtotal_amountN
api_kwargsr   r   r   r
   r	   r   c                    t                                          |           || _        || _        || _        || _        || _        | j        f| _        |                                  d S )Nr   )	super__init__r   r   r   r
   r	   	_id_attrs_freeze)selfr   r   r   r
   r	   r   	__class__s          ^/root/projects/qq-shell/venv/lib/python3.11/site-packages/telegram/_payment/refundedpayment.pyr   zRefundedPayment.__init__G   se     	J///%!-$3/I'6P'9;    )N)
__name__
__module____qualname____doc__	__slots__strintr   r   __classcell__)r   s   @r   r   r      s        # #JI 26 '+    	
 %( %($J tO         r   r   N)r   telegram._telegramobjectr   telegram._utils.typesr   r    r   r   <module>r"      sp   & Q P 3 3 3 3 3 3 * * * * * *B B B B Bn B B B B Br   