U
    g                     @   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 )zJThis module contains an object that represents a Telegram RefundedPayment.    )Optional)TelegramObject)JSONDictc                	       sD   e Zd ZdZdZdddeeeeee ee d fddZ	  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_kwargs)r   r
   r   r	   r   r   c                   sB   t  j|d || _|| _|| _|| _|| _| jf| _|   d S )Nr   )	super__init__r   r
   r   r	   r   Z	_id_attrsZ_freeze)selfr   r
   r   r	   r   r   	__class__ E/tmp/pip-unpacked-wheel-swnnwir2/telegram/_payment/refundedpayment.pyr   I   s    

zRefundedPayment.__init__)N)__name__
__module____qualname____doc__	__slots__strintr   r   r   __classcell__r   r   r   r   r      s   % r   N)r   typingr   Ztelegram._telegramobjectr   Ztelegram._utils.typesr   r   r   r   r   r   <module>   s   