--- title: "messages.votesList" description: "How users voted in a poll" nav_exclude: true image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png redirect_from: /API_docs/constructors/messages_votesList.html --- # Constructor: messages.votesList [Back to constructors index](/API_docs/constructors/index.html) How users voted in a poll ### Attributes: | Name | Type | Required | Description | |----------|---------------|----------|-------------| |count|[int](/API_docs/types/int.html) | Yes|Total number of votes for all options (or only for the chosen `option`, if provided to [messages.getPollVotes](../methods/messages.getPollVotes.html))| |votes|Array of [MessagePeerVote](/API_docs/types/MessagePeerVote.html) | Yes|Vote info for each user| |chats|Array of [Chat](/API_docs/types/Chat.html) | Yes|Mentioned chats| |users|Array of [User](/API_docs/types/User.html) | Yes|Info about users that voted in the poll| |next\_offset|[string](/API_docs/types/string.html) | Optional|Offset to use with the next [messages.getPollVotes](../methods/messages.getPollVotes.html) request, empty string if no more results are available.| ### Type: [messages.VotesList](/API_docs/types/messages.VotesList.html) ### Example: ``` $messages_votesList = ['_' => 'messages.votesList', 'count' => int, 'votes' => [MessagePeerVote, MessagePeerVote], 'chats' => [Chat, Chat], 'users' => [User, User], 'next_offset' => 'string']; ```