Layer 220
StatsPublicForwards
Contains info about the forwards of a story as a message to public chats and reposts by public channels.
constructor
stats.publicForwards#93037e20 flags:# count:int forwards:Vector<PublicForward> next_offset:flags.0?string chats:Vector<Chat> users:Vector<User> = stats.PublicForwards;
Parameters
| Name | Type | Description |
|---|---|---|
| Flags | # | Flags, see TL conditional fields |
| Count | int | Total number of results |
| Forwards | Vector<PublicForward> | Info about the forwards of a story. |
| NextOffset | flags.0?string | Offset used for pagination. |
| Chats | Vector<Chat> | Mentioned chats |
| Users | Vector<User> | Mentioned users |
Returns
stats.PublicForwardsGogram Example
// Creating StatsPublicForwards constructor obj := &tg.StatsPublicForwards{ Count: 0, Forwards: []tg.PublicForward{&tg.PublicForward{}}, Chats: []tg.Chat{&tg.Chat{}}, Users: []tg.User{&tg.User{}}, // Optional fields: // NextOffset: "...", }