StarTransactions¶
- class telegram.StarTransactions(transactions, *, api_kwargs=None)[source]¶
Bases:
telegram.TelegramObject
Contains a list of Telegram Star transactions.
Objects of this class are comparable in terms of equality. Two objects of this class are considered equal, if their
transactions
are equal.Returned In
Added in version 21.4.
- Parameters:
transactions (Sequence[
telegram.StarTransaction
]) – The list of transactions.
- transactions[source]¶
The list of transactions.
- Type:
tuple[
telegram.StarTransaction
]
- __format__(format_spec, /)[source]¶
Default object formatter.
Return str(self) if format_spec is empty. Raise TypeError otherwise.
- classmethod __init_subclass__()[source]¶
This method is called when a class is subclassed.
The default implementation does nothing. It may be overridden to extend subclasses.
- classmethod __subclasshook__(object, /)[source]¶
Abstract classes can override this to customize issubclass().
This is invoked early on by abc.ABCMeta.__subclasscheck__(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).