mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
1.4 KiB
1.4 KiB
title | description | nav_exclude | image | redirect_from |
---|---|---|---|---|
stats.publicForwards | Contains info about the forwards of a story as a message to public chats and reposts by public channels. | true | https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png | /API_docs/constructors/stats_publicForwards.html |
Constructor: stats.publicForwards
Contains info about the forwards of a story as a message to public chats and reposts by public channels.
Attributes:
Name | Type | Required | Description |
---|---|---|---|
count | int | Yes | Total number of results |
forwards | Array of PublicForward | Yes | Info about the forwards of a story. |
next_offset | string | Optional | Offset used for pagination. |
chats | Array of Chat | Yes | Mentioned chats |
users | Array of User | Yes | Mentioned users |
Type: stats.PublicForwards
Example:
$stats_publicForwards = ['_' => 'stats.publicForwards', 'count' => int, 'forwards' => [PublicForward, PublicForward], 'next_offset' => 'string', 'chats' => [Chat, Chat], 'users' => [User, User]];