
    'i                     6    d Z ddlmZ ddlmZ  G d de      Zy)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| _        | j                          y )Nr   )	super__init__r   r   r   r
   r	   	_id_attrs_freeze)selfr   r   r   r
   r	   r   	__class__s          k/home/obispo/Crisostomo_bridge/mision_env/lib/python3.12/site-packages/telegram/_payment/refundedpayment.pyr   zRefundedPayment.__init__G   sU     	J/%!-$3/I'6P'99;    )N)
__name__
__module____qualname____doc__	__slots__strintr   r   __classcell__)r   s   @r   r   r      sk    #JI 26 '+  	
 %( %($J tO r   r   N)r   telegram._telegramobjectr   telegram._utils.typesr   r    r   r   <module>r"      s   & Q 3 *Bn Br   