PaidMediaPurchased¶
- class telegram.PaidMediaPurchased(from_user, paid_media_payload, *, api_kwargs=None)[source]¶
Bases:
telegram.TelegramObjectThis object contains information about a paid media purchase.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
from_userandpaid_media_payloadare equal.Note
In Python
fromis a reserved word. Usefrom_userinstead.Available In
Added in version 21.6.
- Parameters:
from_user (
telegram.User) – User who purchased the media.paid_media_payload (
str) – Bot-specified paid media payload.
- classmethod de_json(data, bot=None)[source]¶
Converts JSON data to a Telegram object.
- Parameters:
data (dict[
str, …]) – The JSON data.bot (
telegram.Bot, optional) –The bot associated with this object. Defaults to
None, in which case shortcut methods will not be available.Changed in version 21.4:
botis now optional and defaults toNone
- Returns:
The Telegram object.