MadelineProtoDocs/docs/API_docs/constructors/stats.publicForwards.md
2024-05-01 14:53:46 +02:00

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

Back to constructors index

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]];