Layer 227
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
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

Gogram Example

// Creating StatsPublicForwardsObj constructor
obj := &tg.StatsPublicForwardsObj{
    Count: 42,
    Forwards: &tg.VectorPublicForward{},
    NextOffset: "Hello, World!",
    Chats: &tg.VectorChat{},
    Users: &tg.VectorUser{},
}