mirror of
https://github.com/wiz0u/WTelegramClient.git
synced 2026-01-05 00:00:21 +01:00
API Layer 179.3: UpdateBroadcastRevenueTransactions
This commit is contained in:
parent
7d388e6e75
commit
37b8f6c054
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
## *_Telegram Client API library written 100% in C# and .NET_*
|
||||
|
||||
This library allows you to connect to Telegram and control a user programmatically (or a bot, but [Telegram.Bot](https://github.com/TelegramBots/Telegram.Bot) is much easier for that).
|
||||
This library allows you to connect to Telegram and control a user programmatically (or a bot, but [WTelegramBot](https://www.nuget.org/packages/WTelegramBot) is much easier for that).
|
||||
All the Telegram Client APIs (MTProto) are supported so you can do everything the user could do with a full Telegram GUI client.
|
||||
|
||||
This ReadMe is a **quick but important tutorial** to learn the fundamentals about this library. Please read it all.
|
||||
|
|
|
|||
|
|
@ -5301,6 +5301,12 @@ namespace TL
|
|||
public Peer peer;
|
||||
public Reaction reaction;
|
||||
}
|
||||
/// <summary><para>See <a href="https://corefork.telegram.org/constructor/updateBroadcastRevenueTransactions"/></para></summary>
|
||||
[TLDef(0x5C65D358)]
|
||||
public sealed partial class UpdateBroadcastRevenueTransactions : Update
|
||||
{
|
||||
public BroadcastRevenueBalances balances;
|
||||
}
|
||||
|
||||
/// <summary>Updates state. <para>See <a href="https://corefork.telegram.org/constructor/updates.state"/></para></summary>
|
||||
[TLDef(0xA56C2A3E)]
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ namespace TL
|
|||
{
|
||||
public static partial class Layer
|
||||
{
|
||||
public const int Version = 179; // fetched 01/05/2024 09:06:44
|
||||
public const int Version = 179; // fetched 07/05/2024 13:21:04
|
||||
internal const int SecretChats = 144;
|
||||
internal const int MTProto2 = 73;
|
||||
internal const uint VectorCtor = 0x1CB5C415;
|
||||
|
|
@ -406,6 +406,7 @@ namespace TL
|
|||
[0x07DF587C] = typeof(UpdateBotEditBusinessMessage),
|
||||
[0xA02A982E] = typeof(UpdateBotDeleteBusinessMessage),
|
||||
[0x1824E40B] = typeof(UpdateNewStoryReaction),
|
||||
[0x5C65D358] = typeof(UpdateBroadcastRevenueTransactions),
|
||||
[0xA56C2A3E] = typeof(Updates_State),
|
||||
[0x5D75A138] = typeof(Updates_DifferenceEmpty),
|
||||
[0x00F49CA0] = typeof(Updates_Difference),
|
||||
|
|
|
|||
Loading…
Reference in a new issue