Skip to content

Commit

Permalink
bot api 7.7
Browse files Browse the repository at this point in the history
  • Loading branch information
coder2020official committed Jul 7, 2024
1 parent 18834e4 commit 2d56fa8
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<p align="center">A simple, but extensible Python implementation for the <a href="https://core.telegram.org/bots/api">Telegram Bot API</a>.</p>
<p align="center">Both synchronous and asynchronous.</p>

## <p align="center">Supported Bot API version: <a href="https://core.telegram.org/bots/api#july-1-2024">7.6</a>!
## <p align="center">Supported Bot API version: <a href="https://core.telegram.org/bots/api#july-7-2024">7.6</a>!

<h2><a href='https://pytba.readthedocs.io/en/latest/index.html'>Official documentation</a></h2>
<h2><a href='https://pytba.readthedocs.io/ru/latest/index.html'>Official ru documentation</a></h2>
Expand Down
45 changes: 44 additions & 1 deletion telebot/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -1080,6 +1080,9 @@ class Message(JsonDeserializable):
the payment. More about payments »
:type successful_payment: :class:`telebot.types.SuccessfulPayment`
:param refunded_payment: Optional. Message is a service message about a refunded payment, information about the payment. More about payments »
:type refunded_payment: :class:`telebot.types.RefundedPayment`
:param users_shared: Optional. Service message: a user was shared with the bot
:type users_shared: :class:`telebot.types.UsersShared`
Expand Down Expand Up @@ -1391,7 +1394,8 @@ def de_json(cls, json_string):
opts['show_caption_above_media'] = obj['show_caption_above_media']
if 'paid_media' in obj:
opts['paid_media'] = PaidMediaInfo.de_json(obj['paid_media'])

if 'refunded_payment' in obj:
opts['refunded_payment'] = RefundedPayment.de_json(obj['refunded_payment'])

return cls(message_id, from_user, date, chat, content_type, opts, json_string)

Expand Down Expand Up @@ -1502,6 +1506,7 @@ def __init__(self, message_id, from_user, date, chat, content_type, options, jso
self.effect_id: Optional[str] = None
self.show_caption_above_media: Optional[bool] = None
self.paid_media : Optional[PaidMediaInfo] = None
self.refunded_payment : Optional[RefundedPayment] = None

for key in options:
setattr(self, key, options[key])
Expand Down Expand Up @@ -10676,5 +10681,43 @@ def to_dict(self):
if self.supports_streaming is not None:
data['supports_streaming'] = self.supports_streaming
return data

class RefundedPayment(JsonDeserializable):
"""
This object contains basic information about a refunded payment.
Telegram documentation: https://core.telegram.org/bots/api#refundedpayment
:param currency: Three-letter ISO 4217 currency code, or “XTR” for payments in Telegram Stars. Currently, always “XTR”
:type currency: :obj:`str`
:param total_amount: 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, it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).
:type total_amount: :obj:`int`
:param invoice_payload: Bot-specified invoice payload
:type invoice_payload: :obj:`str`
:param telegram_payment_charge_id: Telegram payment identifier
:type telegram_payment_charge_id: :obj:`str`
:param provider_payment_charge_id: Optional. Provider payment identifier
:type provider_payment_charge_id: :obj:`str`
:return: Instance of the class
:rtype: :class:`RefundedPayment`
"""

def __init__(self, currency, total_amount, invoice_payload, telegram_payment_charge_id, provider_payment_charge_id=None, **kwargs):
self.currency: str = currency
self.total_amount: int = total_amount
self.invoice_payload: str = invoice_payload
self.telegram_payment_charge_id: str = telegram_payment_charge_id
self.provider_payment_charge_id: Optional[str] = provider_payment_charge_id

@classmethod
def de_json(cls, json_string):
if json_string is None: return None
obj = cls.check_json(json_string)
return cls(**obj)


0 comments on commit 2d56fa8

Please sign in to comment.